]> git.lizzy.rs Git - rust.git/blob - src/test/ui/invalid/invalid-macro-matcher.rs
Merge commit '40b00f4200fbdeefd11815398cb46394b8cb0a5e' into sync_cg_clif-2021-12-30
[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 }