struct Bar { bar: T } struct Foo(); impl Foo { fn foo() { } } fn main() { let thing = Bar { bar: Foo }; thing.bar.foo(); //~^ ERROR no method named `foo` found for fn item `fn() -> Foo {Foo}` in the current scope [E0599] }