Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
ui
/
macros
/
bang-after-name.rs
blob: 7654d8c440390189fcd282fc445bc9159adaf979 [
file
] [
log
] [
blame
]
// run-rustfix
#[
allow
(
unused_macros
)]
macro_rules
!
foo
!
{
//~ ERROR macro names aren't followed by a `!`
()
=>
{};
}
fn
main
()
{}