2017-05-27 12:58:52 -05:00
|
|
|
error[E0599]: no method named `fake` found for type `{integer}` in the current scope
|
2016-08-17 09:20:04 -05:00
|
|
|
--> $DIR/macro-backtrace-invalid-internals.rs:15:13
|
|
|
|
|
|
|
|
|
15 | 1.fake()
|
|
|
|
| ^^^^
|
|
|
|
...
|
|
|
|
50 | fake_method_stmt!();
|
|
|
|
| -------------------- in this macro invocation
|
|
|
|
|
2017-06-11 12:48:46 -05:00
|
|
|
error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields
|
2016-09-28 04:27:23 -05:00
|
|
|
--> $DIR/macro-backtrace-invalid-internals.rs:21:13
|
2016-08-17 09:20:04 -05:00
|
|
|
|
|
|
|
|
21 | 1.fake
|
2016-09-28 04:27:23 -05:00
|
|
|
| ^^^^
|
2016-08-17 09:20:04 -05:00
|
|
|
...
|
|
|
|
51 | fake_field_stmt!();
|
|
|
|
| ------------------- in this macro invocation
|
|
|
|
|
2017-06-12 14:45:48 -05:00
|
|
|
error[E0613]: attempted to access tuple index `0` on type `{integer}`, but the type was not a tuple or tuple struct
|
2016-08-17 09:20:04 -05:00
|
|
|
--> $DIR/macro-backtrace-invalid-internals.rs:27:11
|
|
|
|
|
|
|
|
|
27 | (1).0
|
|
|
|
| ^^^^^
|
|
|
|
...
|
|
|
|
52 | fake_anon_field_stmt!();
|
|
|
|
| ------------------------ in this macro invocation
|
|
|
|
|
2017-05-27 12:58:52 -05:00
|
|
|
error[E0599]: no method named `fake` found for type `{integer}` in the current scope
|
2016-08-17 09:20:04 -05:00
|
|
|
--> $DIR/macro-backtrace-invalid-internals.rs:33:13
|
|
|
|
|
|
|
|
|
33 | 1.fake()
|
|
|
|
| ^^^^
|
|
|
|
...
|
|
|
|
54 | let _ = fake_method_expr!();
|
|
|
|
| ------------------- in this macro invocation
|
|
|
|
|
2017-06-11 12:48:46 -05:00
|
|
|
error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields
|
2016-09-28 04:27:23 -05:00
|
|
|
--> $DIR/macro-backtrace-invalid-internals.rs:39:13
|
2016-08-17 09:20:04 -05:00
|
|
|
|
|
|
|
|
39 | 1.fake
|
2016-09-28 04:27:23 -05:00
|
|
|
| ^^^^
|
2016-08-17 09:20:04 -05:00
|
|
|
...
|
|
|
|
55 | let _ = fake_field_expr!();
|
|
|
|
| ------------------ in this macro invocation
|
|
|
|
|
2017-06-12 14:45:48 -05:00
|
|
|
error[E0613]: attempted to access tuple index `0` on type `{integer}`, but the type was not a tuple or tuple struct
|
2016-08-17 09:20:04 -05:00
|
|
|
--> $DIR/macro-backtrace-invalid-internals.rs:45:11
|
|
|
|
|
|
|
|
|
45 | (1).0
|
|
|
|
| ^^^^^
|
|
|
|
...
|
|
|
|
56 | let _ = fake_anon_field_expr!();
|
|
|
|
| ----------------------- in this macro invocation
|
|
|
|
|
2017-07-02 05:49:30 -05:00
|
|
|
error: aborting due to 6 previous errors
|
2016-08-17 09:20:04 -05:00
|
|
|
|