rust/src/test/run-pass/move-4-unique.rs

12 lines
279 B
Rust
Raw Normal View History

extern mod std;
fn test(foo: ~{a: int, b: int, c: int}) -> ~{a: int, b: int, c: int} {
let foo = foo;
let bar = move foo;
let baz = move bar;
let quux = move baz;
2012-08-01 19:30:05 -05:00
return quux;
}
fn main() { let x = ~{a: 1, b: 2, c: 3}; let y = test(x); assert (y.c == 3); }