]> git.lizzy.rs Git - rust.git/blob - src/test/ui/invalid/invalid-macro-matcher.rs
Merge commit '0cce3f643bfcbb92d5a1bb71858c9cbaff749d6b' into clippyup
[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 }