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

19 lines
454 B
Rust
Raw Normal View History

2012-08-01 14:34:35 -07:00
macro_rules! overly_complicated (
($fnname:ident, $arg:ident, $ty:ty, $body:block, $val:expr, $pat:pat, $res:path) =>
2012-08-01 14:34:35 -07:00
{
2012-08-20 12:23:37 -07:00
fn $fnname($arg: $ty) -> Option<$ty> $body
2012-08-06 12:34:08 -07:00
match $fnname($val) {
2012-08-20 12:23:37 -07:00
Some($pat) => {
2012-08-01 14:34:35 -07:00
$res
}
2012-08-03 19:59:04 -07:00
_ => { fail; }
2012-08-01 14:34:35 -07:00
}
}
)
2012-08-01 14:34:35 -07:00
fn main() {
2012-08-20 12:23:37 -07:00
assert overly_complicated!(f, x, Option<uint>, { return Some(x); },
Some(8u), Some(y), y) == 8u
2012-08-01 14:34:35 -07:00
}