]> git.lizzy.rs Git - rust.git/blob - src/test/ui/invalid/invalid-macro-matcher.rs
Merge commit '35d9c6bf256968e1b40e0d554607928bdf9cebea' into sync_cg_clif-2022-02-23
[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 }