blob: c9951a930225e2d50ccbee33eb0fcf14fc542b45 [file] [log] [blame]
fn dup(x: Box<isize>) -> Box<(Box<isize>,Box<isize>)> {
Box::new((x, x))
//~^ ERROR use of moved value: `x` [E0382]
}
fn main() {
dup(Box::new(3));
}