]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass-fulldeps/macro-crate.rs
06f78b10e5e93071231b19f591f75f08a3bdd9dc
[rust.git] / src / test / run-pass-fulldeps / macro-crate.rs
1 // Copyright 2013-2015 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:macro_crate_test.rs
12 // ignore-stage1
13
14 #![feature(plugin, rustc_attrs)]
15 #![plugin(macro_crate_test)]
16
17 #[macro_use] #[no_link]
18 extern crate macro_crate_test;
19
20 #[derive(PartialEq, Clone, Debug)]
21 #[rustc_into_multi_foo]
22 fn foo() -> AnotherFakeTypeThatHadBetterGoAway {}
23
24 // Check that the `#[into_multi_foo]`-generated `foo2` is configured away
25 fn foo2() {}
26
27 trait Qux {
28     #[rustc_into_multi_foo]
29     fn bar();
30 }
31
32 impl Qux for i32 {
33     #[rustc_into_multi_foo]
34     fn bar() {}
35 }
36
37 impl Qux for u8 {}
38
39 pub fn main() {
40     assert_eq!(1, make_a_1!());
41     assert_eq!(2, exported_macro!());
42
43     assert_eq!(Foo2::Bar2, Foo2::Bar2);
44     test(None::<Foo2>);
45
46     let _ = Foo3::Bar;
47
48     let x = 10i32;
49     assert_eq!(x.foo(), 42);
50     let x = 10u8;
51     assert_eq!(x.foo(), 0);
52 }
53
54 fn test<T: PartialEq+Clone>(_: Option<T>) {}