2020-02-22 01:16:39 -06:00
|
|
|
error: macro expansion ignores token `2` and any following
|
|
|
|
--> $DIR/trait-non-item-macros.rs:3:9
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2020-02-22 01:16:39 -06:00
|
|
|
LL | $a
|
|
|
|
| ^^
|
2018-10-20 15:36:17 -05:00
|
|
|
...
|
|
|
|
LL | bah!(2);
|
2020-02-22 01:16:39 -06:00
|
|
|
| -------- caused by the macro expansion here
|
2019-12-16 07:56:47 -06:00
|
|
|
|
|
2020-02-22 01:16:39 -06:00
|
|
|
= note: the usage of `bah!` is likely invalid in trait item context
|
2018-10-20 15:36:17 -05:00
|
|
|
|
2020-02-22 01:16:39 -06:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/trait-non-item-macros.rs:12:33
|
|
|
|
|
|
|
|
|
LL | let _recovery_witness: () = 0;
|
|
|
|
| -- ^ expected `()`, found integer
|
|
|
|
| |
|
|
|
|
| expected due to this
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-10-20 15:36:17 -05:00
|
|
|
|
2020-02-22 01:16:39 -06:00
|
|
|
For more information about this error, try `rustc --explain E0308`.
|