summary refs log tree commit diff
path: root/src/test/run-pass/move-4.rs
blob: aaaf05938a833936aece613157be1f129ac955fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

use std;
import uint;

fn test(foo: @{a: int, b: int, c: int}) -> @{a: int, b: int, c: int} {
    let foo = foo;
    let bar <- foo;
    let baz <- bar;
    let quux <- baz;
    ret quux;
}

fn main() { let x = @{a: 1, b: 2, c: 3}; let y = test(x); assert (y.c == 3); }