2020-09-02 07:40:56 +00:00
|
|
|
error[E0369]: cannot add `Box<isize>` to `Box<isize>`
|
2019-03-27 17:13:09 +00:00
|
|
|
--> $DIR/autoderef-full-lval.rs:15:24
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let z: isize = a.x + b.y;
|
2020-09-02 07:40:56 +00:00
|
|
|
| --- ^ --- Box<isize>
|
2019-03-27 17:13:09 +00:00
|
|
|
| |
|
2020-09-02 07:40:56 +00:00
|
|
|
| Box<isize>
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
error[E0369]: cannot add `Box<isize>` to `Box<isize>`
|
2019-03-27 17:13:09 +00:00
|
|
|
--> $DIR/autoderef-full-lval.rs:21:33
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
|
LL | let answer: isize = forty.a + two.a;
|
2020-09-02 07:40:56 +00:00
|
|
|
| ------- ^ ----- Box<isize>
|
2019-03-27 17:13:09 +00:00
|
|
|
| |
|
2020-09-02 07:40:56 +00:00
|
|
|
| Box<isize>
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0369`.
|