rust/src/test/auxiliary/anon_trait_static_method_lib.rs

11 lines
105 B
Rust
Raw Normal View History

pub struct Foo {
x: int
}
pub impl Foo {
static fn new() -> Foo {
Foo { x: 3 }
}
}