]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-25385.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.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:13:23
3    |
4 LL |     ($e:expr) => { $e.foo() }
5    |                       ^^^
6 ...
7 LL |     foo!(a);
8    |     -------- in this macro invocation
9
10 error[E0599]: no method named `foo` found for type `i32` in the current scope
11   --> $DIR/issue-25385.rs:21:15
12    |
13 LL |     foo!(1i32.foo());
14    |               ^^^
15
16 error: aborting due to 2 previous errors
17
18 For more information about this error, try `rustc --explain E0599`.