blob: 1337d61a6d8e8ddd538f953ef85f6ffa97a58823 [file] [log] [blame]
#![feature(box_syntax)]
struct S {
x: Box<isize>,
}
impl S {
pub fn foo(self) -> isize {
self.bar();
return *self.x; //~ ERROR use of moved value: `*self.x`
}
pub fn bar(self) {}
}
fn main() {
let x = S { x: box 1 };
println!("{}", x.foo());
}