mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-30 00:03:49 +00:00
15 lines
375 B
Plaintext
15 lines
375 B
Plaintext
error[E0624]: method `method` is private
|
|
--> $DIR/close_window.rs:9:7
|
|
|
|
|
LL | s.method();
|
|
| ^^^^^^ private method
|
|
|
|
|
::: $DIR/auxiliary/close_window.rs:3:5
|
|
|
|
|
LL | fn method(&self) {}
|
|
| ---------------- private method defined here
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0624`.
|