rust/tests/target/macro_not_expr.rs
2018-02-04 11:53:10 +00:00

7 lines
88 B
Rust

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