about summary refs log tree commit diff
path: root/tests/ui/privacy/private-impl-method.stderr
blob: c53232e4c8c0e4fce2b99adb4536ecb506d31ab6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0624]: method `foo` is private
  --> $DIR/private-impl-method.rs:20:7
   |
LL |         fn foo(&self) {}
   |         ------------- private method defined here
...
LL |     s.foo();
   |       ^^^ private method

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0624`.