2018-08-08 07:28:26 -05:00
|
|
|
error[E0308]: mismatched types
|
2019-05-28 13:46:13 -05:00
|
|
|
--> $DIR/cross-borrow-trait.rs:10:26
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2019-05-28 13:46:13 -05:00
|
|
|
LL | let _y: &dyn Trait = x;
|
|
|
|
| ^
|
|
|
|
| |
|
|
|
|
| expected &dyn Trait, found struct `std::boxed::Box`
|
|
|
|
| help: consider borrowing here: `&x`
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
= note: expected type `&dyn Trait`
|
|
|
|
found type `std::boxed::Box<dyn Trait>`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|