1
Fork 0
rust/tests/ui/moves/move-4-unique.rs

19 lines
332 B
Rust
Raw Normal View History

//@ run-pass
#![allow(dead_code)]
struct Triple {a: isize, b: isize, c: isize}
fn test(foo: Box<Triple>) -> Box<Triple> {
let foo = foo;
2013-02-15 02:44:18 -08:00
let bar = foo;
let baz = bar;
let quux = baz;
2012-08-01 17:30:05 -07:00
return quux;
}
pub fn main() {
let x = Box::new(Triple{a: 1, b: 2, c: 3});
let y = test(x);
assert_eq!(y.c, 3);
}