518dc52f85
This changes the indexing syntax from .() to [], the vector syntax from ~[] to [] and the extension syntax from #fmt() to #fmt[]
13 lines
257 B
Rust
13 lines
257 B
Rust
|
|
use std;
|
|
import std::uint;
|
|
|
|
fn test(foo: @{a: int, b: int, c: int}) -> @{a: int, b: int, c: int} {
|
|
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); }
|