2020-09-02 07:40:56 +00:00
error[E0038]: the trait `Eq` cannot be made into an object
2021-02-08 22:15:45 +00:00
--> $DIR/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;
2020-10-20 00:57:18 +00:00
| ^^^^^^^^^^^ `Eq` cannot be made into an object
2020-10-16 00:23:45 +00:00
|
note: for a trait to be "object safe" it needs to allow building a vtable to allow the call to be resolvable dynamically; for more information visit <https://doc.rust-lang.org/reference/items/traits.html#object-safety>
--> $SRC_DIR/core/src/cmp.rs:LL:COL
2018-11-01 18:17:58 +00:00
|
2022-12-09 15:56:23 +00:00
= note: the trait cannot be made into an object because it uses `Self` as a type parameter
2018-11-01 18:17:58 +00:00
2020-09-02 07:40:56 +00:00
error[E0191]: the value of the associated type `Item` (from trait `Iterator`) must be specified
2021-02-08 22:15:45 +00:00
--> $DIR/object-fail.rs:9:17
2018-11-01 18:17:58 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let _: &dyn IteratorAlias = &vec![123].into_iter();
2019-12-12 22:48:46 +00:00
| ^^^^^^^^^^^^^ help: specify the associated type: `IteratorAlias<Item = Type>`
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`.