1
Fork 0
rust/src/test/compile-fail/invalid-macro-matcher.rs

7 lines
85 B
Rust
Raw Normal View History

2015-07-24 01:09:52 +00:00
macro_rules! invalid { //~ ERROR Invalid macro matcher
_ => ();
}
fn main() {
}