Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// check-pass
macro_rules! macro_rules { () => { struct S; } } // OK
macro_rules! {} // OK, calls the macro defined above
fn main() {
let s = S;
}