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