rust/src/test/ui/parser/macro/trait-non-item-macros.stderr

23 lines
672 B
Plaintext
Raw Normal View History

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
|
LL | $a
| ^^
2018-10-20 15:36:17 -05:00
...
LL | bah!(2);
| -------- caused by the macro expansion here
|
= note: the usage of `bah!` is likely invalid in trait item context
2018-10-20 15:36:17 -05: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
For more information about this error, try `rustc --explain E0308`.