rust/tests/target/macro_not_expr.rs

8 lines
87 B
Rust
Raw Normal View History

macro_rules! test {
2018-03-22 08:09:21 +01:00
($($t:tt)*) => {};
}
fn main() {
test!( a : B => c d );
}