Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
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
);
}