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