2018-11-01 13:17:58 -05:00
|
|
|
error[E0038]: the trait `EqAlias` cannot be made into an object
|
2018-11-06 17:17:11 -06:00
|
|
|
--> $DIR/trait-alias-object.rs:17:13
|
2018-11-01 13:17:58 -05:00
|
|
|
|
|
|
|
|
LL | let _: &dyn EqAlias = &123;
|
|
|
|
| ^^^^^^^^^^^ the trait `EqAlias` cannot be made into an object
|
|
|
|
|
|
|
|
|
= 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
|
2018-11-06 17:17:11 -06:00
|
|
|
--> $DIR/trait-alias-object.rs:18:13
|
2018-11-01 13:17:58 -05:00
|
|
|
|
|
|
|
|
LL | let _: &dyn IteratorAlias = &vec![123].into_iter();
|
|
|
|
| ^^^^^^^^^^^^^^^^^ missing associated type `Item` value
|
2018-11-08 20:14:41 -06:00
|
|
|
|
|
|
|
|
::: $SRC_DIR/libcore/iter/iterator.rs:LL:COL
|
|
|
|
|
|
|
|
|
LL | type Item;
|
|
|
|
| ---------- `Item` defined here
|
2018-11-01 13:17:58 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
Some errors occurred: E0038, E0191.
|
|
|
|
For more information about an error, try `rustc --explain E0038`.
|