blob: 26e1f2afa91bb81f1d76cfca0813a26592ad3872 [file] [log] [blame] [edit]
// 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`
}