2019-03-30 22:06:09 +00:00
|
|
|
error[E0038]: the trait `std::cmp::Eq` cannot be made into an object
|
|
|
|
--> $DIR/trait-alias-object-fail.rs:7:13
|
2018-11-01 18:17:58 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let _: &dyn EqAlias = &123;
|
2019-03-30 22:06:09 +00:00
|
|
|
| ^^^^^^^^^^^ the trait `std::cmp::Eq` cannot be made into an object
|
2018-11-01 18:17:58 +00:00
|
|
|
|
|
|
|
|
= note: the trait cannot use `Self` as a type parameter in the supertraits or where-clauses
|
|
|
|
|
|
|
|
error[E0191]: the value of the associated type `Item` (from the trait `std::iter::Iterator`) must be specified
|
2019-03-30 22:06:09 +00:00
|
|
|
--> $DIR/trait-alias-object-fail.rs:9:13
|
2018-11-01 18:17:58 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let _: &dyn IteratorAlias = &vec![123].into_iter();
|
2018-11-09 05:43:08 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^ associated type `Item` must be specified
|
2018-11-01 18:17:58 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2019-04-17 17:26:38 +00:00
|
|
|
Some errors have detailed explanations: E0038, E0191.
|
2018-11-01 18:17:58 +00:00
|
|
|
For more information about an error, try `rustc --explain E0038`.
|