Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
parser
/
misspelled-macro-rules.fixed
blob: 62be913d85f05ade39c94663b3288d058d67acac [
file
] [
log
] [
blame
]
// Regression test for issue #91227.
// run-rustfix
#![allow(unused_macros)]
macro_rules
!
thing
{
//~^ ERROR: expected one of
//~| HELP: perhaps you meant to define a macro
()
=>
{}
}
fn main
()
{}