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