rust/rustfmt-core/tests/source/macro_not_expr.rs
2018-02-07 22:48:05 +09:00

8 lines
86 B
Rust

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