]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-25385.stderr
point at private fields in struct literal
[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: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 the macro `foo` (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`.