rust/src/test/ui/error-codes/E0424.rs
2018-12-25 21:08:33 -07:00

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
}