6d86969260
conflict with the new single-line-sugared-inner-doc-comment (`//! ...`).
15 lines
271 B
Rust
15 lines
271 B
Rust
class cat {
|
|
priv {
|
|
let mut meows : uint;
|
|
fn sleep() { loop{} }
|
|
fn meow() {
|
|
#error("Meow");
|
|
meows += 1u; //~ ERROR unresolved name
|
|
sleep(); //~ ERROR unresolved name
|
|
}
|
|
}
|
|
|
|
new(in_x : uint) { self.meows = in_x; }
|
|
}
|
|
|
|
fn main() { } |