]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass-fulldeps/proc_macro.rs
tests: remove ignore-stage1 where possible in proc_macro tests.
[rust.git] / src / test / run-pass-fulldeps / proc_macro.rs
1 // Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // aux-build:proc_macro_def.rs
12 // ignore-cross-compile
13
14 #![feature(proc_macro_hygiene)]
15
16 extern crate proc_macro_def;
17
18 use proc_macro_def::{attr_tru, attr_identity, identity, ret_tru, tru};
19
20 #[attr_tru]
21 fn f1() -> bool {
22     return false;
23 }
24
25 #[attr_identity]
26 fn f2() -> bool {
27     return identity!(true);
28 }
29
30 fn f3() -> identity!(bool) {
31     ret_tru!();
32 }
33
34 fn f4(x: bool) -> bool {
35     match x {
36         identity!(true) => false,
37         identity!(false) => true,
38     }
39 }
40
41 fn main() {
42     assert!(f1());
43     assert!(f2());
44     assert!(tru!());
45     assert!(f3());
46     assert!(identity!(5 == 5));
47     assert!(f4(false));
48 }