summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/assoc_fn_without_self.rs
blob: 778d9847773f35633b4db608c914835434c1ae11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
fn main() {}

struct S;

impl S {
    fn foo() {}

    fn bar(&self) {}

    fn baz(a: u8, b: u8) {}

    fn b() {
        fn c() {
            foo(); //~ ERROR cannot find function `foo` in this scope
        }
        foo(); //~ ERROR cannot find function `foo` in this scope
        bar(); //~ ERROR cannot find function `bar` in this scope
        baz(2, 3); //~ ERROR cannot find function `baz` in this scope
    }
}