rust/tests/ui/macros/issue-34421-mac-expr-bad-st...

16 lines
215 B
Rust

macro_rules! make_item {
($a:ident) => {
struct $a;
}; //~^ ERROR expected expression
//~| ERROR expected expression
}
fn a() {
make_item!(A)
}
fn b() {
make_item!(B)
}
fn main() {}