Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// Test for issue #50381: non-lifetime passed to :lifetime.
macro_rules! m { ($x:lifetime) => { } }
fn main() {
m!(a);
//~^ ERROR no rules expected the token `a`
}