summary refs log tree commit diff
path: root/src/test/ui/error-codes/E0424.rs
blob: 3c6a1d4f88f1153b60c1dd5bba8962b163393d06 (plain)
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
}