blob: edfb5a920582ada1211ad0b89455d89c815f0a94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// error-pattern:assigning to immutable class field
class cat {
priv {
let mutable meows : uint;
}
let how_hungry : int;
fn eat() {
how_hungry -= 5;
}
new(in_x : uint, in_y : int) { meows = in_x; how_hungry = in_y; }
}
fn main() {
let nyan : cat = cat(52u, 99);
nyan.eat();
}
|