rust/src/test/run-pass/classes-simple.rs

10 lines
164 B
Rust
Raw Normal View History

// xfail-test
class cat {
priv {
let mutable meows : uint;
}
let how_hungry : int;
new(in_x : uint, in_y : int) { meows = in_x; how_hungry = in_y; }
}