9 lines
138 B
Rust
9 lines
138 B
Rust
class cat : int { //~ ERROR interface
|
|
let meows: uint;
|
|
new(in_x : uint) { self.meows = in_x; }
|
|
}
|
|
|
|
fn main() {
|
|
let nyan = cat(0u);
|
|
}
|