]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass-fulldeps/macro-crate.rs
Auto merge of #28922 - panicbit:trpl-missing-docs, r=steveklabnik
[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, custom_attribute)]
15 #![plugin(macro_crate_test)]
16
17 #[macro_use] #[no_link]
18 extern crate macro_crate_test;
19
20 #[into_multi_foo]
21 #[derive(PartialEq, Clone, Debug)]
22 fn foo() -> AnotherFakeTypeThatHadBetterGoAway {}
23
24 trait Qux {
25     #[into_multi_foo]
26     fn bar();
27 }
28
29 impl Qux for i32 {
30     #[into_multi_foo]
31     fn bar() {}
32 }
33
34 impl Qux for u8 {}
35
36 pub fn main() {
37     assert_eq!(1, make_a_1!());
38     assert_eq!(2, exported_macro!());
39
40     assert_eq!(Foo2::Bar2, Foo2::Bar2);
41     test(None::<Foo2>);
42
43     let x = 10i32;
44     assert_eq!(x.foo(), 42);
45     let x = 10u8;
46     assert_eq!(x.foo(), 0);
47 }
48
49 fn test<T: PartialEq+Clone>(_: Option<T>) {}