about summary refs log tree commit diff
path: root/src/test/run-pass/writealias.rs
blob: fff85460ee17f4451a23198023c853e86987e271 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// -*- rust -*-
type point = {x: int, y: int, mutable z: int};

fn f(&p: point) { p.z = 13; }

fn main() {
    let x: point = {x: 10, y: 11, mutable z: 12};
    f(x);
    assert (x.z == 13);
}