rust/src/test/run-pass/writealias.rs

14 lines
192 B
Rust
Raw Normal View History

2010-06-23 23:03:09 -05:00
// -*- rust -*-
2012-03-26 20:35:18 -05:00
type point = {x: int, y: int, mut z: int};
2010-06-23 23:03:09 -05:00
2011-09-12 05:39:38 -05:00
fn f(&p: point) { p.z = 13; }
2010-06-23 23:03:09 -05:00
2011-04-19 15:35:49 -05:00
fn main() {
2012-03-26 20:35:18 -05:00
let mut x: point = {x: 10, y: 11, mut z: 12};
f(x);
assert (x.z == 13);
}