5 lines
92 B
Rust
5 lines
92 B
Rust
struct cat {
|
|
tail: int;
|
|
fn meow() { tail += 1; } //~ ERROR: Did you mean: `self.tail`
|
|
}
|