rust/tests/ui/traits/alias/object-fail.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
1013 B
Plaintext
Raw Normal View History

error[E0038]: the trait `Eq` cannot be made into an object
2021-02-08 16:15:45 -06:00
--> $DIR/object-fail.rs:7:13
|
2019-03-09 06:03:44 -06:00
LL | let _: &dyn EqAlias = &123;
2020-10-19 19:57:18 -05:00
| ^^^^^^^^^^^ `Eq` cannot be made into an object
|
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
|
= note: the trait cannot be made into an object because it uses `Self` as a type parameter
error[E0191]: the value of the associated type `Item` (from trait `Iterator`) must be specified
2021-02-08 16:15:45 -06:00
--> $DIR/object-fail.rs:9:17
|
2019-03-09 06:03:44 -06:00
LL | let _: &dyn IteratorAlias = &vec![123].into_iter();
| ^^^^^^^^^^^^^ help: specify the associated type: `IteratorAlias<Item = Type>`
error: aborting due to 2 previous errors
Some errors have detailed explanations: E0038, E0191.
For more information about an error, try `rustc --explain E0038`.