]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/misspelled-macro-rules.rs
Merge commit '23d11428de3e973b34a5090a78d62887f821c90e' into clippyup
[rust.git] / src / test / ui / parser / misspelled-macro-rules.rs
1 // Regression test for issue #91227.
2
3 // run-rustfix
4
5 #![allow(unused_macros)]
6
7 marco_rules! thing {
8 //~^ ERROR: expected one of
9 //~| HELP: perhaps you meant to define a macro
10     () => {}
11 }
12
13 fn main() {}