rust/tests/target/macro_not_expr.rs
2018-03-02 15:07:13 +13:00

7 lines
88 B
Rust

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