summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0424.rs
blob: fa0c86ecf489423b8e1b67d765fb1ff8e2e87a99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
}