Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
macro_rules! foo() //~ ERROR semicolon
//~| ERROR unexpected end of macro
macro_rules! bar {
($($tokens:tt)*) => {}
}
bar!( //~ ERROR semicolon
blah
)
fn main() {