rust/src/test/compile-fail/ctor-uninit-var.rs
2012-04-21 14:27:20 -07:00

24 lines
344 B
Rust

// error-pattern:unsatisfied precondition
class cat {
priv {
let mut meows : uint;
}
let how_hungry : int;
fn eat() {
self.how_hungry -= 5;
}
new(in_x : uint, in_y : int) {
let foo;
self.meows = in_x + (in_y as uint);
self.how_hungry = foo;
}
}
fn main() {
let nyan : cat = cat(52u, 99);
nyan.eat();
}