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

7 lines
86 B
Rust

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