| error[E0599]: no method named `fake` found for type `{integer}` in the current scope |
| --> $DIR/macro-backtrace-invalid-internals.rs:15:13 |
| | |
| 15 | 1.fake() //~ ERROR no method |
| | ^^^^ |
| ... |
| 50 | fake_method_stmt!(); |
| | -------------------- in this macro invocation |
| |
| error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields |
| --> $DIR/macro-backtrace-invalid-internals.rs:21:13 |
| | |
| 21 | 1.fake //~ ERROR doesn't have fields |
| | ^^^^ |
| ... |
| 51 | fake_field_stmt!(); |
| | ------------------- in this macro invocation |
| |
| error[E0609]: no field `0` on type `{integer}` |
| --> $DIR/macro-backtrace-invalid-internals.rs:27:11 |
| | |
| 27 | (1).0 //~ ERROR no field |
| | ^^^^^ |
| ... |
| 52 | fake_anon_field_stmt!(); |
| | ------------------------ in this macro invocation |
| |
| error[E0599]: no method named `fake` found for type `{integer}` in the current scope |
| --> $DIR/macro-backtrace-invalid-internals.rs:33:13 |
| | |
| 33 | 1.fake() //~ ERROR no method |
| | ^^^^ |
| ... |
| 54 | let _ = fake_method_expr!(); |
| | ------------------- in this macro invocation |
| |
| error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields |
| --> $DIR/macro-backtrace-invalid-internals.rs:39:13 |
| | |
| 39 | 1.fake //~ ERROR doesn't have fields |
| | ^^^^ |
| ... |
| 55 | let _ = fake_field_expr!(); |
| | ------------------ in this macro invocation |
| |
| error[E0609]: no field `0` on type `{integer}` |
| --> $DIR/macro-backtrace-invalid-internals.rs:45:11 |
| | |
| 45 | (1).0 //~ ERROR no field |
| | ^^^^^ |
| ... |
| 56 | let _ = fake_anon_field_expr!(); |
| | ----------------------- in this macro invocation |
| |
| error: aborting due to 6 previous errors |
| |