Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
ui
/
macros
/
macro-non-lifetime.rs
blob: 26e1f2afa91bb81f1d76cfca0813a26592ad3872 [
file
] [
log
] [
blame
]
// 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`
}