aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/writealias.rs
blob: 8bf8140f315805566e42599cbe3c3a4f3960d9df (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
// -*- rust -*-

type point = rec(int x, int y, mutable int z);

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

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