1 2 3 4 5 6 7 8
#![crate_type="lib"] pub struct Foo(()); impl Foo { pub fn new() -> Foo { Foo(()) } }