Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
parser
/
misspelled-macro-rules.fixed
blob: 7471a5641c28a892ddbf5ab4c94f00a6ec19bd33 [
file
] [
log
] [
blame
] [
edit
]
// 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
()
{}