summaryrefslogtreecommitdiffstats
path: root/src/test/ui/did_you_mean/issue-40006.rs
blob: 74f304d81a0f169323fb80362872580571666851 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
impl dyn A {
    Y
} //~ ERROR expected one of `!` or `::`, found `}`

struct S;

trait X {
    X() {} //~ ERROR expected one of `!` or `::`, found `(`
    fn xxx() { ### }
    L = M;
    Z = { 2 + 3 };
    ::Y ();
}

trait A {
    X() {} //~ ERROR expected one of `!` or `::`, found `(`
}
trait B {
    fn xxx() { ### } //~ ERROR expected
}
trait C {
    L = M; //~ ERROR expected one of `!` or `::`, found `=`
}
trait D {
    Z = { 2 + 3 }; //~ ERROR expected one of `!` or `::`, found `=`
}
trait E {
    ::Y (); //~ ERROR expected one of
}

impl S {
    pub hello_method(&self) { //~ ERROR missing
        println!("Hello");
    }
}

fn main() {
    S.hello_method(); //~ no method named `hello_method` found
}