rust/src/test/ui/cast/cast-to-unsized-trait-object-suggestion.stderr

20 lines
742 B
Plaintext
Raw Normal View History

error[E0620]: cast to unsized type: `&{integer}` as `dyn std::marker::Send`
--> $DIR/cast-to-unsized-trait-object-suggestion.rs:12:5
|
2018-02-22 18:42:32 -06:00
LL | &1 as Send; //~ ERROR cast to unsized
| ^^^^^^----
| |
| help: try casting to a reference instead: `&Send`
error[E0620]: cast to unsized type: `std::boxed::Box<{integer}>` as `dyn std::marker::Send`
--> $DIR/cast-to-unsized-trait-object-suggestion.rs:13:5
|
2018-02-22 18:42:32 -06:00
LL | Box::new(1) as Send; //~ ERROR cast to unsized
| ^^^^^^^^^^^^^^^----
| |
| help: try casting to a `Box` instead: `Box<Send>`
2017-05-16 08:12:24 -05:00
error: aborting due to 2 previous errors
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0620`.