mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
35 lines
576 B
Rust
35 lines
576 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
mod base {
|
|
pub trait HasNew {
|
|
fn new() -> Self;
|
|
}
|
|
|
|
pub struct Foo {
|
|
dummy: (),
|
|
}
|
|
|
|
impl ::base::HasNew for Foo {
|
|
fn new() -> Foo {
|
|
println!("Foo");
|
|
Foo { dummy: () }
|
|
}
|
|
}
|
|
|
|
pub struct Bar {
|
|
dummy: (),
|
|
}
|
|
|
|
impl ::base::HasNew for Bar {
|
|
fn new() -> Bar {
|
|
println!("Bar");
|
|
Bar { dummy: () }
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
let _f: base::Foo = base::HasNew::new();
|
|
let _b: base::Bar = base::HasNew::new();
|
|
}
|