13 lines
159 B
Rust
13 lines
159 B
Rust
struct Foo;
|
|
|
|
impl Foo {
|
|
fn bar(self) {}
|
|
|
|
fn foo() {
|
|
self.bar(); //~ ERROR E0424
|
|
}
|
|
}
|
|
|
|
fn main () {
|
|
let self = "self"; //~ ERROR E0424
|
|
}
|