Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
macros
/
issue-6596-1.rs
blob: 25f1d6500726ee7b962d1312f2e575061b180eb6 [
file
] [
log
] [
blame
]
macro_rules
!
e
{
(
$inp
:
ident
)
=>
(
$nonexistent
//~^ ERROR expected expression, found `$`
);
}
fn
main
()
{
e
!(
foo
);
}