2010-06-23 23:03:09 -05:00
|
|
|
// -*- rust -*-
|
|
|
|
|
2010-07-23 17:29:17 -05:00
|
|
|
// error-pattern: writing to immutable type
|
2010-06-23 23:03:09 -05:00
|
|
|
|
|
|
|
type point = rec(int x, int y, int z);
|
|
|
|
|
|
|
|
fn f(&point p) {
|
|
|
|
p.x = 13;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let point x = rec(x=10, y=11, z=12);
|
|
|
|
f(x);
|
|
|
|
}
|