rust/tests/ui/liveness/liveness-use-after-move.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
137 B
Rust
Raw Normal View History

fn main() {
let x: Box<_> = 5.into();
let y = x;
println!("{}", *x); //~ ERROR borrow of moved value: `x`
2013-07-02 19:47:32 +00:00
y.clone();
}