]> git.lizzy.rs Git - rust.git/blob - src/test/ui/invalid/invalid-macro-matcher.rs
Add 'library/portable-simd/' from commit '1ce1c645cf27c4acdefe6ec8a11d1f0491954a99'
[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 }