mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
19 lines
266 B
Rust
19 lines
266 B
Rust
struct S {
|
|
x: Box<isize>,
|
|
}
|
|
|
|
|
|
|
|
impl S {
|
|
pub fn foo(self) -> isize {
|
|
self.bar();
|
|
return *self.x; //~ ERROR use of moved value: `self`
|
|
}
|
|
|
|
pub fn bar(self) {}
|
|
}
|
|
|
|
fn main() {
|
|
let x = S { x: 1.into() };
|
|
println!("{}", x.foo());
|
|
}
|