2019-01-08 15:14:04 -06:00
|
|
|
error[E0038]: the trait `Trait` cannot be made into an object
|
|
|
|
--> $DIR/wf-convert-unsafe-trait-obj.rs:16:25
|
|
|
|
|
|
2020-01-19 16:53:37 -06:00
|
|
|
LL | trait Trait: Sized {}
|
2020-01-31 18:47:00 -06:00
|
|
|
| ----- ----- ...because it requires `Self: Sized`
|
|
|
|
| |
|
|
|
|
| this trait cannot be made into an object...
|
2020-01-19 16:53:37 -06:00
|
|
|
...
|
2019-01-08 15:14:04 -06:00
|
|
|
LL | let t: &dyn Trait = &S;
|
|
|
|
| ^^ the trait `Trait` cannot be made into an object
|
|
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
= note: required because of the requirements on the impl of `CoerceUnsized<&dyn Trait>` for `&S`
|
2019-01-08 15:14:04 -06:00
|
|
|
= note: required by cast to type `&dyn Trait`
|
|
|
|
|
|
|
|
error[E0038]: the trait `Trait` cannot be made into an object
|
|
|
|
--> $DIR/wf-convert-unsafe-trait-obj.rs:17:17
|
|
|
|
|
|
2020-01-19 16:53:37 -06:00
|
|
|
LL | trait Trait: Sized {}
|
2020-01-31 18:47:00 -06:00
|
|
|
| ----- ----- ...because it requires `Self: Sized`
|
|
|
|
| |
|
|
|
|
| this trait cannot be made into an object...
|
2020-01-19 16:53:37 -06:00
|
|
|
...
|
2019-01-08 15:14:04 -06:00
|
|
|
LL | takes_trait(&S);
|
|
|
|
| ^^ the trait `Trait` cannot be made into an object
|
|
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
= note: required because of the requirements on the impl of `CoerceUnsized<&dyn Trait>` for `&S`
|
2019-01-08 15:14:04 -06:00
|
|
|
= note: required by cast to type `&dyn Trait`
|
|
|
|
|
|
|
|
error[E0038]: the trait `Trait` cannot be made into an object
|
|
|
|
--> $DIR/wf-convert-unsafe-trait-obj.rs:15:5
|
|
|
|
|
|
2020-01-19 16:53:37 -06:00
|
|
|
LL | trait Trait: Sized {}
|
2020-01-31 18:47:00 -06:00
|
|
|
| ----- ----- ...because it requires `Self: Sized`
|
|
|
|
| |
|
|
|
|
| this trait cannot be made into an object...
|
2020-01-19 16:53:37 -06:00
|
|
|
...
|
2019-01-08 15:14:04 -06:00
|
|
|
LL | &S as &dyn Trait;
|
|
|
|
| ^^ the trait `Trait` cannot be made into an object
|
|
|
|
|
|
2020-09-02 02:40:56 -05:00
|
|
|
= note: required because of the requirements on the impl of `CoerceUnsized<&dyn Trait>` for `&S`
|
2019-01-08 15:14:04 -06:00
|
|
|
= note: required by cast to type `&dyn Trait`
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0038`.
|