9 lines
184 B
Rust
9 lines
184 B
Rust
|
// error-pattern:unresolved typename: nonexistent
|
||
|
class cat implements nonexistent {
|
||
|
let meows: uint;
|
||
|
new(in_x : uint) { self.meows = in_x; }
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
let nyan = cat(0u);
|
||
|
}
|