]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/trait-static-method-overwriting.rs
auto merge of #5497 : luqmana/rust/clang-ver, r=thestinger
[rust.git] / src / test / run-pass / trait-static-method-overwriting.rs
1 // xfail-fast
2
3 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
4 // file at the top-level directory of this distribution and at
5 // http://rust-lang.org/COPYRIGHT.
6 //
7 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
8 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
9 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
10 // option. This file may not be copied, modified, or distributed
11 // except according to those terms.
12
13 mod base {
14     pub trait HasNew<T> {
15         fn new() -> T;
16     }
17
18     pub struct Foo {
19         dummy: (),
20     }
21
22     impl ::base::HasNew<Foo> for Foo {
23         fn new() -> Foo {
24                         unsafe { io::println("Foo"); }
25             Foo { dummy: () }
26         }
27     }
28
29     pub struct Bar {
30         dummy: (),
31     }
32
33     impl ::base::HasNew<Bar> for Bar {
34         fn new() -> Bar {
35                         unsafe { io::println("Bar"); }
36             Bar { dummy: () }
37         }
38     }
39 }
40
41 pub fn main() {
42     let f: base::Foo = base::HasNew::new::<base::Foo, base::Foo>();
43         let b: base::Bar = base::HasNew::new::<base::Bar, base::Bar>();
44 }