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

19 lines
454 B
Rust
Raw Normal View History

2012-08-01 16:34:35 -05:00
macro_rules! overly_complicated {
{$fnname:ident, $arg:ident, $ty:ty, $body:block, $val:expr, $pat:pat, $res:path} =>
{
fn $fnname($arg: $ty) -> option<$ty> $body
2012-08-06 14:34:08 -05:00
match $fnname($val) {
2012-08-03 21:59:04 -05:00
some($pat) => {
2012-08-01 16:34:35 -05:00
$res
}
2012-08-03 21:59:04 -05:00
_ => { fail; }
2012-08-01 16:34:35 -05:00
}
}
}
fn main() {
assert overly_complicated!(f, x, option<uint>, { return some(x); },
some(8u), some(y), y) == 8u
}