Sign in
fuchsia
/
third_party
/
rust
/
972fef232ec0dd7a3f42091aa6f36cd68aeb3eef
/
.
/
tests
/
ui
/
macros
/
bang-after-name.fixed
blob: 3cad1f9aa77aebfea13439c2f8f5c802e988773a [
file
] [
log
] [
blame
]
//@ run-rustfix
#[allow(unused_macros)]
macro_rules
!
foo
{
//~ ERROR macro names aren't followed by a `!`
()
=>
{};
}
fn main
()
{}