blob: 0104a1b27e4853fa55f50ef456d3428b0e3ed117 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error[E0624]: method `f` is private
--> $DIR/private-method-inherited.rs:13:7
|
LL | fn f(self) {}
| ---------- private method defined here
...
LL | x.f();
| ^ private method
error: aborting due to previous error
For more information about this error, try `rustc --explain E0624`.
|