1
Fork 0
rust/src/test/ui/traits/trait-alias-object.stderr

19 lines
838 B
Text
Raw Normal View History

error[E0038]: the trait `EqAlias` cannot be made into an object
2018-12-25 08:56:47 -07:00
--> $DIR/trait-alias-object.rs:7:13
|
2018-11-27 10:56:36 +01:00
LL | let _: &dyn EqAlias = &123; //~ ERROR `EqAlias` cannot be made into an object
| ^^^^^^^^^^^ 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-12-25 08:56:47 -07:00
--> $DIR/trait-alias-object.rs:8:13
|
2018-11-27 10:56:36 +01:00
LL | let _: &dyn IteratorAlias = &vec![123].into_iter(); //~ ERROR must be specified
2018-11-08 21:43:08 -08:00
| ^^^^^^^^^^^^^^^^^ associated type `Item` must be specified
error: aborting due to 2 previous errors
Some errors occurred: E0038, E0191.
For more information about an error, try `rustc --explain E0038`.