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