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

11 lines
258 B
Rust
Raw Normal View History

2011-07-13 18:46:50 -07:00
// xfail-stage0
2011-07-21 16:47:47 -07:00
//error-pattern:is an expr, expected an identifier
fn main() {
2011-07-27 14:19:39 +02:00
#macro([#mylambda(x, body),
{
fn f(x: int) -> int { ret body }
f
}]);
2011-07-27 14:19:39 +02:00
assert (#mylambda(y * 1, y * 2)(8) == 16);
}