blob: 9423f0a359c69bdf04de02bccd2b926cde56afcb [file] [log] [blame]
macro_rules! empty { () => () }
fn main() {
match 42 {
_ => { empty!() }
//~^ ERROR macro expansion ends with an incomplete expression
};
}