rust/src/test/run-pass/move-self.rs

20 lines
205 B
Rust
Raw Normal View History

struct S {
x: ~str
}
impl S {
fn foo(self) {
(move self).bar();
}
fn bar(self) {
io::println(self.x);
}
}
fn main() {
let x = S { x: ~"Hello!" };
x.foo();
}