rust/src/test/compile-fail/mutable-class-fields-2.rs
2012-04-21 14:27:20 -07:00

20 lines
309 B
Rust

// error-pattern:assigning to immutable field
class cat {
priv {
let mut meows : uint;
}
let how_hungry : int;
fn eat() {
self.how_hungry -= 5;
}
new(in_x : uint, in_y : int) { self.meows = in_x; self.how_hungry = in_y; }
}
fn main() {
let nyan : cat = cat(52u, 99);
nyan.eat();
}