mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
30 lines
993 B
Plaintext
30 lines
993 B
Plaintext
error[E0424]: expected value, found module `self`
|
|
--> $DIR/suggest-add-self.rs:5:9
|
|
|
|
|
LL | pub(crate) fn f() {
|
|
| - this function doesn't have a `self` parameter
|
|
LL | self.0
|
|
| ^^^^ `self` value is a keyword only available in methods with a `self` parameter
|
|
|
|
|
help: add a `self` receiver parameter to make the associated `fn` a method
|
|
|
|
|
LL | pub(crate) fn f(&self) {
|
|
| +++++
|
|
|
|
error[E0424]: expected value, found module `self`
|
|
--> $DIR/suggest-add-self.rs:10:9
|
|
|
|
|
LL | pub fn g() {
|
|
| - this function doesn't have a `self` parameter
|
|
LL | self.0
|
|
| ^^^^ `self` value is a keyword only available in methods with a `self` parameter
|
|
|
|
|
help: add a `self` receiver parameter to make the associated `fn` a method
|
|
|
|
|
LL | pub fn g(&self) {
|
|
| +++++
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0424`.
|