]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass/trait-static-method-overwriting.rs
Imported Upstream version 1.0.0~beta
[rustc.git] / src / test / run-pass / trait-static-method-overwriting.rs
CommitLineData
1a4d82fc 1// Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
223e47cc
LB
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
11mod base {
85aaf69f 12 pub trait HasNew {
1a4d82fc 13 fn new() -> Self;
223e47cc
LB
14 }
15
16 pub struct Foo {
17 dummy: (),
18 }
19
85aaf69f 20 impl ::base::HasNew for Foo {
223e47cc 21 fn new() -> Foo {
1a4d82fc 22 println!("Foo");
223e47cc
LB
23 Foo { dummy: () }
24 }
25 }
26
27 pub struct Bar {
28 dummy: (),
29 }
30
85aaf69f 31 impl ::base::HasNew for Bar {
223e47cc 32 fn new() -> Bar {
1a4d82fc 33 println!("Bar");
223e47cc
LB
34 Bar { dummy: () }
35 }
36 }
37}
38
39pub fn main() {
85aaf69f
SL
40 let _f: base::Foo = base::HasNew::new();
41 let _b: base::Bar = base::HasNew::new();
223e47cc 42}