rust/src/test/run-pass/macro.rs

6 lines
80 B
Rust

// xfail-stage0
fn main() {
#macro[[#m1[a], a*4]];
assert (#m1[2] == 8);
}