rust/src/test/compile-fail/assign-to-method.rs
2012-09-06 10:52:26 -07:00

22 lines
355 B
Rust

struct cat {
priv {
let mut meows : uint;
}
let how_hungry : int;
fn speak() { self.meows += 1u; }
}
fn cat(in_x : uint, in_y : int) -> cat {
cat {
meows: in_x,
how_hungry: in_y
}
}
fn main() {
let nyan : cat = cat(52u, 99);
nyan.speak = fn@() { debug!("meow"); }; //~ ERROR attempted to take value of method
}