rust/src/test/auxiliary/use_from_trait_xc.rs
2013-06-13 18:03:08 -04:00

10 lines
81 B
Rust

pub trait Trait {
fn foo();
}
struct Foo;
impl Foo {
pub fn new() {}
}