blob: a1b7a5f65336fa7cdad173a69cd9dcafffd29275 (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0424]: expected value, found module `self`
--> $DIR/E0424.rs:17:9
|
LL | self.bar(); //~ ERROR E0424
| ^^^^ `self` value is a keyword only available in methods with `self` parameter
error: aborting due to previous error
For more information about this error, try `rustc --explain E0424`.
|