rust/tests/ui/moves/move-4-unique.rs

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

19 lines
331 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 10:44:18 +00:00
let bar = foo;
let baz = bar;
let quux = baz;
2012-08-02 00:30:05 +00: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);
}