]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/misspelled-macro-rules.rs
Change syntax for TyAlias where clauses
[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() {}