rust/src/test/ui/cross/cross-borrow-trait.stderr

16 lines
505 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0308]: mismatched types
2018-12-25 09:56:47 -06:00
--> $DIR/cross-borrow-trait.rs:10:22
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let _y: &Trait = x;
2018-08-08 07:28:26 -05:00
| ^
| |
| expected &dyn Trait, found struct `std::boxed::Box`
| help: consider borrowing here: `&x`
|
= 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`.