summaryrefslogtreecommitdiffstats
path: root/tests/ui/autoderef-full-lval.stderr
blob: 9921ce7c154406109f31127072121bcfd4e65e40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
error[E0369]: cannot add `Box<isize>` to `Box<isize>`
  --> $DIR/autoderef-full-lval.rs:15:24
   |
LL |     let z: isize = a.x + b.y;
   |                    --- ^ --- Box<isize>
   |                    |
   |                    Box<isize>

error[E0369]: cannot add `Box<isize>` to `Box<isize>`
  --> $DIR/autoderef-full-lval.rs:21:33
   |
LL |     let answer: isize = forty.a + two.a;
   |                         ------- ^ ----- Box<isize>
   |                         |
   |                         Box<isize>

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0369`.