rust/tests/target/macro_not_expr.rs

8 lines
88 B
Rust
Raw Normal View History

macro_rules! test {
2018-01-25 15:12:18 +01:00
($($t: tt)*) => {};
}
fn main() {
test!( a : B => c d );
}