rust/src/test/ui/issues/issue-20692.stderr

31 lines
1.1 KiB
Plaintext
Raw Normal View History

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
|
LL | trait Array: Sized + Copy {}
| ----- ----- ---- ...because it requires `Self: Sized`
| | |
| | ...because it requires `Self: Sized`
| this trait cannot be made into an object...
2020-01-19 16:53:37 -06:00
...
2019-05-28 13:46:13 -05:00
LL | &dyn Array;
| ^^^^^^^^^^ the trait `Array` cannot be made into an object
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
|
LL | trait Array: Sized + Copy {}
| ----- ----- ---- ...because it requires `Self: Sized`
| | |
| | ...because it requires `Self: Sized`
| this trait cannot be made into an object...
2020-01-19 16:53:37 -06:00
...
2018-02-22 18:42:32 -06:00
LL | let _ = x
| ^ the trait `Array` cannot be made into an object
|
= note: required because of the requirements on the impl of `CoerceUnsized<&dyn Array>` for `&T`
= note: required by cast to type `&dyn Array`
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`.