2018-12-16 21:21:47 -06:00
|
|
|
struct Clam {
|
2014-12-05 20:12:25 -06:00
|
|
|
x: Box<isize>,
|
|
|
|
y: Box<isize>,
|
2013-03-01 21:57:05 -06:00
|
|
|
}
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2021-08-24 19:39:40 -05:00
|
|
|
|
|
|
|
|
2018-12-16 21:21:47 -06:00
|
|
|
struct Fish {
|
2014-12-05 20:12:25 -06:00
|
|
|
a: Box<isize>,
|
2013-03-01 21:57:05 -06:00
|
|
|
}
|
2010-07-19 21:06:55 -05:00
|
|
|
|
|
|
|
fn main() {
|
2021-08-24 19:39:40 -05:00
|
|
|
let a: Clam = Clam{ x: Box::new(1), y: Box::new(2) };
|
|
|
|
let b: Clam = Clam{ x: Box::new(10), y: Box::new(20) };
|
2017-01-21 08:40:31 -06:00
|
|
|
let z: isize = a.x + b.y;
|
2020-09-02 02:40:56 -05:00
|
|
|
//~^ ERROR cannot add `Box<isize>` to `Box<isize>`
|
2014-10-02 00:10:09 -05:00
|
|
|
println!("{}", z);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(z, 21);
|
2021-08-24 19:39:40 -05:00
|
|
|
let forty: Fish = Fish{ a: Box::new(40) };
|
|
|
|
let two: Fish = Fish{ a: Box::new(2) };
|
2015-01-08 04:54:35 -06:00
|
|
|
let answer: isize = forty.a + two.a;
|
2020-09-02 02:40:56 -05:00
|
|
|
//~^ ERROR cannot add `Box<isize>` to `Box<isize>`
|
2014-10-02 00:10:09 -05:00
|
|
|
println!("{}", answer);
|
2013-05-18 21:02:45 -05:00
|
|
|
assert_eq!(answer, 42);
|
2011-08-12 18:33:53 -05:00
|
|
|
}
|