2011-08-12 18:33:53 -05:00
|
|
|
// error-pattern: binary operation + cannot be applied to type
|
2011-07-27 07:19:39 -05:00
|
|
|
type clam = {x: @int, y: @int};
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
type fish = {a: @int};
|
2010-07-19 21:06:55 -05:00
|
|
|
|
|
|
|
fn main() {
|
2011-07-27 07:19:39 -05:00
|
|
|
let a: clam = {x: @1, y: @2};
|
|
|
|
let b: clam = {x: @10, y: @20};
|
|
|
|
let z: int = a.x + b.y;
|
2011-12-22 19:53:53 -06:00
|
|
|
log(debug, z);
|
2011-06-15 13:19:50 -05:00
|
|
|
assert (z == 21);
|
2011-07-27 07:19:39 -05:00
|
|
|
let forty: fish = {a: @40};
|
|
|
|
let two: fish = {a: @2};
|
|
|
|
let answer: int = forty.a + two.a;
|
2011-12-22 19:53:53 -06:00
|
|
|
log(debug, answer);
|
2011-06-15 13:19:50 -05:00
|
|
|
assert (answer == 42);
|
2011-08-12 18:33:53 -05:00
|
|
|
}
|