2017-12-10 13:47:55 -06:00
|
|
|
error[E0038]: the trait `Array` cannot be made into an object
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-20692.rs:7:5
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2020-01-19 16:53:37 -06:00
|
|
|
LL | trait Array: Sized {}
|
|
|
|
| ----- the trait cannot require that `Self : Sized`
|
|
|
|
...
|
2019-05-28 13:46:13 -05:00
|
|
|
LL | &dyn Array;
|
|
|
|
| ^^^^^^^^^^ the trait `Array` cannot be made into an object
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
|
= note: the trait cannot require that `Self : Sized`
|
|
|
|
|
|
|
|
error[E0038]: the trait `Array` cannot be made into an object
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue-20692.rs:4:13
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2020-01-19 16:53:37 -06:00
|
|
|
LL | trait Array: Sized {}
|
|
|
|
| ----- the trait cannot require that `Self : Sized`
|
|
|
|
...
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let _ = x
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^ the trait `Array` cannot be made into an object
|
|
|
|
|
|
|
|
|
= note: the trait cannot require that `Self : Sized`
|
2018-05-26 22:51:50 -05:00
|
|
|
= note: required because of the requirements on the impl of `std::ops::CoerceUnsized<&dyn Array>` for `&T`
|
2019-01-08 15:14:04 -06:00
|
|
|
= note: required by cast to type `&dyn Array`
|
2017-12-10 13:47:55 -06: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 E0038`.
|