blob: ed6c2f268f45f6b3b4738cb614aa3d583f475749 [file] [log] [blame]
// error-pattern:assigning to immutable field
struct cat {
priv mut meows : uint,
how_hungry : int,
}
impl cat {
fn eat() {
self.how_hungry -= 5;
}
}
fn cat(in_x : uint, in_y : int) -> cat {
cat {
meows: in_x,
how_hungry: in_y
}
}
fn main() {
let nyan : cat = cat(52u, 99);
nyan.eat();
}