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

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

19 lines
336 B
Rust
Raw Normal View History

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