rust/src/test/ui/autoderef-full-lval.rs

26 lines
578 B
Rust
Raw Normal View History

#![feature(box_syntax)]
struct Clam {
2014-12-06 02:12:25 +00:00
x: Box<isize>,
y: Box<isize>,
2013-03-02 03:57:05 +00:00
}
struct Fish {
2014-12-06 02:12:25 +00:00
a: Box<isize>,
2013-03-02 03:57:05 +00:00
}
fn main() {
let a: Clam = Clam{x: box 1, y: box 2};
let b: Clam = Clam{x: box 10, y: box 20};
2017-01-21 14:40:31 +00:00
let z: isize = a.x + b.y;
//~^ ERROR cannot add `Box<isize>` to `Box<isize>`
2014-10-02 05:10:09 +00:00
println!("{}", z);
assert_eq!(z, 21);
let forty: Fish = Fish{a: box 40};
let two: Fish = Fish{a: box 2};
let answer: isize = forty.a + two.a;
//~^ ERROR cannot add `Box<isize>` to `Box<isize>`
2014-10-02 05:10:09 +00:00
println!("{}", answer);
assert_eq!(answer, 42);
}