blob: b92259b69df8e6153d948b445c8e9e2ca7859182 [file] [log] [blame]
error[E0369]: binary operation `+` cannot be applied to type `std::boxed::Box<isize>`
--> $DIR/autoderef-full-lval.rs:15:20
|
LL | let z: isize = a.x + b.y;
| ^^^^^^^^^
|
= note: an implementation of `std::ops::Add` might be missing for `std::boxed::Box<isize>`
error[E0369]: binary operation `+` cannot be applied to type `std::boxed::Box<isize>`
--> $DIR/autoderef-full-lval.rs:21:25
|
LL | let answer: isize = forty.a + two.a;
| ^^^^^^^^^^^^^^^
|
= note: an implementation of `std::ops::Add` might be missing for `std::boxed::Box<isize>`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0369`.