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

30 lines
938 B
Rust
Raw Normal View History

// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
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) =>
({
2012-08-20 14:23:37 -05:00
fn $fnname($arg: $ty) -> Option<$ty> $body
2012-08-06 14:34:08 -05:00
match $fnname($val) {
2012-08-20 14:23:37 -05:00
Some($pat) => {
2012-08-01 16:34:35 -05:00
$res
}
_ => { fail!(); }
2012-08-01 16:34:35 -05:00
}
})
2012-08-01 16:34:35 -05:00
)
pub fn main() {
fail_unless!(overly_complicated!(f, x, Option<uint>, { return Some(x)); },
2012-08-20 14:23:37 -05:00
Some(8u), Some(y), y) == 8u
2012-08-01 16:34:35 -05:00
}