rust/tests/ui/parser/macro/trait-non-item-macros.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
226 B
Rust
Raw Normal View History

macro_rules! bah {
($a:expr) => {
$a
}; //~^ ERROR macro expansion ignores token `2` and any following
}
trait Bar {
bah!(2);
}
fn main() {
let _recovery_witness: () = 0; //~ ERROR mismatched types
}