2012-12-11 01:32:48 +00:00
|
|
|
// 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.
|
|
|
|
|
2014-04-14 15:30:31 +00:00
|
|
|
#![feature(macro_rules)]
|
2012-08-01 21:34:35 +00:00
|
|
|
|
2012-08-23 00:47:11 +00:00
|
|
|
macro_rules! overly_complicated (
|
2012-08-23 01:06:54 +00:00
|
|
|
($fnname:ident, $arg:ident, $ty:ty, $body:block, $val:expr, $pat:pat, $res:path) =>
|
2012-11-21 20:53:49 +00:00
|
|
|
({
|
2012-08-20 19:23:37 +00:00
|
|
|
fn $fnname($arg: $ty) -> Option<$ty> $body
|
2012-08-06 19:34:08 +00:00
|
|
|
match $fnname($val) {
|
2012-08-20 19:23:37 +00:00
|
|
|
Some($pat) => {
|
2012-08-01 21:34:35 +00:00
|
|
|
$res
|
|
|
|
}
|
2013-10-21 20:08:31 +00:00
|
|
|
_ => { fail!(); }
|
2012-08-01 21:34:35 +00:00
|
|
|
}
|
2012-11-21 20:53:49 +00:00
|
|
|
})
|
2012-08-01 21:34:35 +00:00
|
|
|
|
2012-08-23 00:47:11 +00:00
|
|
|
)
|
2013-02-02 03:43:17 +00:00
|
|
|
pub fn main() {
|
2013-03-29 01:39:09 +00:00
|
|
|
assert!(overly_complicated!(f, x, Option<uint>, { return Some(x); },
|
2013-03-07 03:09:17 +00:00
|
|
|
Some(8u), Some(y), y) == 8u)
|
2012-08-01 21:34:35 +00:00
|
|
|
|
2013-02-01 01:51:01 +00:00
|
|
|
}
|