]> git.lizzy.rs Git - rust.git/blob - src/test/ui/invalid/invalid-macro-matcher.rs
Merge commit '03f01bbe901d60b71cf2c5ec766aef5e532ab79d' into update_cg_clif-2020...
[rust.git] / src / test / ui / invalid / invalid-macro-matcher.rs
1 #![allow(unused_macros)]
2
3 macro_rules! invalid {
4     _ => (); //~ ERROR invalid macro matcher
5 }
6
7 fn main() {
8 }