rust/tests/ui/did_you_mean/issue-40006.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
715 B
Rust
Raw Normal View History

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 {
2017-11-20 12:13:27 +00:00
::Y (); //~ ERROR expected one of
}
impl S {
2017-11-20 12:13:27 +00:00
pub hello_method(&self) { //~ ERROR missing
println!("Hello");
}
}
fn main() {
S.hello_method(); //~ no method named `hello_method` found
}