rust/src/test/compile-fail/autoderef-full-lval.rs

18 lines
424 B
Rust
Raw Normal View History

// error-pattern: binary operation + cannot be applied to type
2011-07-27 12:19:39 +00:00
type clam = {x: @int, y: @int};
2011-07-27 12:19:39 +00:00
type fish = {a: @int};
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;
log(debug, z);
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;
log(debug, answer);
assert (answer == 42);
}