Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
macro_rules! empty { () => () }
fn main() {
match 42 {
_ => { empty!() }
//~^ ERROR macro expansion ends with an incomplete expression
};
}