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