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