2019-03-30 17:06:09 -05:00
|
|
|
error[E0038]: the trait `std::cmp::Eq` cannot be made into an object
|
2020-03-31 20:10:13 -05:00
|
|
|
--> $DIR/trait-alias-object-fail.rs:7:13
|
2018-11-01 13:17:58 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | let _: &dyn EqAlias = &123;
|
2019-03-30 17:06:09 -05:00
|
|
|
| ^^^^^^^^^^^ the trait `std::cmp::Eq` cannot be made into an object
|
2020-02-02 14:51:30 -06:00
|
|
|
|
|
2020-06-11 21:31:49 -05:00
|
|
|
::: $SRC_DIR/core/src/cmp.rs:LL:COL
|
2018-11-01 13:17:58 -05:00
|
|
|
|
|
2020-02-02 14:51:30 -06:00
|
|
|
LL | pub trait Eq: PartialEq<Self> {
|
|
|
|
| --------------- the trait cannot be made into an object because it uses `Self` as a type parameter in this
|
2018-11-01 13:17:58 -05:00
|
|
|
|
2019-12-12 16:48:46 -06:00
|
|
|
error[E0191]: the value of the associated type `Item` (from trait `std::iter::Iterator`) must be specified
|
2020-03-31 20:10:13 -05:00
|
|
|
--> $DIR/trait-alias-object-fail.rs:9:17
|
2018-11-01 13:17:58 -05:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | let _: &dyn IteratorAlias = &vec![123].into_iter();
|
2019-12-12 16:48:46 -06:00
|
|
|
| ^^^^^^^^^^^^^ help: specify the associated type: `IteratorAlias<Item = Type>`
|
2018-11-01 13:17:58 -05:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2019-04-17 12:26:38 -05:00
|
|
|
Some errors have detailed explanations: E0038, E0191.
|
2018-11-01 13:17:58 -05:00
|
|
|
For more information about an error, try `rustc --explain E0038`.
|