2010-06-23 23:03:09 -05:00
|
|
|
// -*- rust -*-
|
|
|
|
|
2011-08-31 11:45:37 -05:00
|
|
|
// error-pattern:assigning to immutable field
|
2010-06-23 23:03:09 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
type point = {x: int, y: int, z: int};
|
2010-06-23 23:03:09 -05:00
|
|
|
|
2011-09-12 04:27:30 -05:00
|
|
|
fn f(p: point) { p.x = 13; }
|
2010-06-23 23:03:09 -05:00
|
|
|
|
2011-08-19 17:16:48 -05:00
|
|
|
fn main() { let x: point = {x: 10, y: 11, z: 12}; f(x); }
|