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