Sign in
android
/
toolchain
/
rustc
/
fc8a4ff31fec5a822fe5eb0da3a6f87866072960
/
.
/
src
/
test
/
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
()
{}