2020-05-17 22:28:12 +00:00
|
|
|
error[E0424]: expected value, found module `self`
|
|
|
|
--> $DIR/missing-self-diag.rs:10:9
|
|
|
|
|
|
|
|
|
LL | self.bar();
|
|
|
|
| ^^^^ `self` value is a keyword only available in methods with a `self` parameter
|
|
|
|
...
|
|
|
|
LL | / pub fn foo(&self) {
|
|
|
|
LL | | call_bar!();
|
2021-10-14 18:28:28 +00:00
|
|
|
| | ----------- in this macro invocation
|
2020-05-17 22:28:12 +00:00
|
|
|
LL | | }
|
|
|
|
| |_____- this function has a `self` parameter, but a macro invocation can only access identifiers it receives from parameters
|
|
|
|
|
|
2021-02-13 19:52:25 +00:00
|
|
|
= note: this error originates in the macro `call_bar` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2020-05-17 22:28:12 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0424`.
|