struct Foo { baz: usize } impl Foo { fn bar() { Foo { baz: 0 }.bar(); //~^ ERROR: no method named `bar` found } fn bar() { //~ ERROR duplicate definitions } } fn main() {}