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

7 lines
137 B
Rust
Raw Normal View History

2011-07-13 20:46:50 -05:00
// xfail-stage0
2011-06-27 12:58:05 -05:00
fn main() {
#macro([#mylambda(x,body), {fn f(int x) -> int { ret body }; f}]);
2011-06-27 12:58:05 -05:00
assert(#mylambda(y,y*2)(8) == 16);
}