blob: 011a7fee478a65b35e1f6fc0e42f5671d9f00fdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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`.
|