c7082ce8e8
All field or method references within a class must begin with "self." now. A bare reference to a field or method in the same class will no longer typecheck.
16 lines
293 B
Rust
16 lines
293 B
Rust
// error-pattern:no public field or method with that name
|
|
class cat {
|
|
priv {
|
|
let mut meows : uint;
|
|
}
|
|
|
|
let how_hungry : int;
|
|
|
|
new(in_x : uint, in_y : int) { self.meows = in_x; self.how_hungry = in_y; }
|
|
}
|
|
|
|
fn main() {
|
|
let nyan : cat = cat(52u, 99);
|
|
assert (nyan.meows == 52u);
|
|
}
|