blob: 5bea6f8134d7700855ffc8e496a237dc0315873c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
extern mod std;
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;
return quux;
}
fn main() { let x = ~{a: 1, b: 2, c: 3}; let y = test(x); assert (y.c == 3); }
|