rust/src/test/run-pass/exterior.rs
Brian Anderson 518dc52f85 Reformat
This changes the indexing syntax from .() to [], the vector syntax from ~[] to
[] and the extension syntax from #fmt() to #fmt[]
2011-08-20 11:04:00 -07:00

17 lines
308 B
Rust

// -*- rust -*-
type point = {x: int, y: int, mutable z: int};
fn f(p: @point) { assert (p.z == 12); p.z = 13; assert (p.z == 13); }
fn main() {
let a: point = {x: 10, y: 11, mutable z: 12};
let b: @point = @a;
assert (b.z == 12);
f(b);
assert (a.z == 12);
assert (b.z == 13);
}