]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-25385.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / issues / issue-25385.stderr
1 error[E0599]: no method named `foo` found for type `i32` in the current scope
2 --> $DIR/issue-25385.rs:2:23
3 |
4 LL | ($e:expr) => { $e.foo() }
5 | ^^^ method not found in `i32`
6 ...
7 LL | foo!(a);
8 | -------- in this macro invocation
9 |
10 = note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
11
12 error[E0599]: no method named `foo` found for type `i32` in the current scope
13 --> $DIR/issue-25385.rs:10:15
14 |
15 LL | foo!(1i32.foo());
16 | ^^^ method not found in `i32`
17
18 error: aborting due to 2 previous errors
19
20 For more information about this error, try `rustc --explain E0599`.