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

12 lines
206 B
Rust
Raw Normal View History

// xfail-pretty - token trees can't pretty print
fn main() {
#macro[[#m1[a], a * 4]];
2012-08-22 19:24:52 -05:00
assert (m1!(2) == 8);
macro_rules! m1tt {
{$a:expr} => {$a*4}
};
2012-08-22 19:24:52 -05:00
assert(m1tt!(2) == 8);
}