1 2 3 4 5 6 7 8 9 10 11 12 13
struct Foo; impl Foo { fn bar(self) {} fn foo() { self.bar(); //~ ERROR E0424 } } fn main () { let self = "self"; //~ ERROR E0424 }