summary refs log tree commit diff
path: root/src/test/ui/traits/trait-alias-object.stderr
blob: 9d9c142802d6cd9b081cbe52aae0d48afbfdbdea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0038]: the trait `EqAlias` cannot be made into an object
  --> $DIR/trait-alias-object.rs:17:13
   |
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
  --> $DIR/trait-alias-object.rs:18:13
   |
LL |     let _: &dyn IteratorAlias = &vec![123].into_iter(); //~ ERROR must be specified
   |             ^^^^^^^^^^^^^^^^^ 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`.