rust/tests/target/macro_not_expr.rs
2018-03-22 16:09:21 +09:00

7 lines
87 B
Rust

macro_rules! test {
($($t:tt)*) => {};
}
fn main() {
test!( a : B => c d );
}