rust/tests/source/macro_not_expr.rs
2015-10-23 13:46:14 -07:00

7 lines
86 B
Rust

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