rust/tests/source/macro_not_expr.rs

8 lines
86 B
Rust
Raw Normal View History

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