rust/src/test/compile-fail/macro-2.rs

6 lines
174 B
Rust
Raw Normal View History

2011-07-21 18:47:47 -05:00
//error-pattern:is an expr, expected an identifier
fn main() {
2011-07-27 07:48:34 -05:00
#macro([#mylambda(x, body), {fn f(x: int) -> int {ret body}; f}]);
2011-07-27 07:48:34 -05:00
assert(#mylambda(y*1, y*2)(8) == 16);
}