1
Fork 0
rust/tests/ui/invalid/invalid-macro-matcher.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
111 B
Rust
Raw Normal View History

2017-05-12 09:53:58 +02:00
#![allow(unused_macros)]
2015-07-24 01:39:47 +00:00
macro_rules! invalid {
_ => (); //~ ERROR invalid macro matcher
2015-07-24 01:09:52 +00:00
}
fn main() {
}