mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-06 05:33:59 +00:00
13 lines
359 B
Plaintext
13 lines
359 B
Plaintext
error[E0624]: associated function `f` is private
|
|
--> $DIR/private-method-inherited.rs:13:7
|
|
|
|
|
LL | fn f(self) {}
|
|
| ---------- private associated function defined here
|
|
...
|
|
LL | x.f();
|
|
| ^ private associated function
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0624`.
|