mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
22 lines
292 B
Rust
22 lines
292 B
Rust
struct Foo;
|
|
|
|
impl Foo {
|
|
fn bar(self) {}
|
|
|
|
fn foo() {
|
|
self.bar(); //~ ERROR E0424
|
|
}
|
|
|
|
fn baz(_: i32) {
|
|
self.bar(); //~ ERROR E0424
|
|
}
|
|
|
|
fn qux() {
|
|
let _ = || self.bar(); //~ ERROR E0424
|
|
}
|
|
}
|
|
|
|
fn main () {
|
|
let self = "self"; //~ ERROR E0424
|
|
}
|