blob: fa0c86ecf489423b8e1b67d765fb1ff8e2e87a99 [file] [log] [blame]
struct Foo;
impl Foo {
fn bar(self) {}
fn foo() {
self.bar(); //~ ERROR E0424
}
fn baz(_: i32) {
self.bar(); //~ ERROR E0424
}
}
fn main () {
let self = "self"; //~ ERROR E0424
}