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