Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
macros
/
macro-non-lifetime.rs
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`
}