2022-10-16 15:03:23 -05:00
|
|
|
error[E0308]: mismatched types
|
|
|
|
--> $DIR/coerce-block-tail-26978.rs:9:9
|
|
|
|
|
|
|
|
|
LL | f(&{x});
|
2023-01-02 20:00:33 -06:00
|
|
|
| ^ expected `i32`, found `Box<i32>`
|
2022-10-16 15:03:23 -05:00
|
|
|
|
|
|
|
|
= note: expected type `i32`
|
|
|
|
found struct `Box<i32>`
|
|
|
|
help: consider unboxing the value
|
|
|
|
|
|
|
|
|
LL | f(&{*x});
|
|
|
|
| +
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-10-16 15:03:23 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|