summaryrefslogtreecommitdiffstats
path: root/tests/ui/generic-associated-types/constraint-assoc-type-suggestion.stderr
blob: 96c4330fec027f987a0ba181b41c6e23129d8ae2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0308]: mismatched types
  --> $DIR/constraint-assoc-type-suggestion.rs:10:23
   |
LL |     let b: Vec<i32> = a;
   |            --------   ^ expected struct `Vec`, found associated type
   |            |
   |            expected due to this
   |
   = note:       expected struct `Vec<i32>`
           found associated type `<T as X>::Y<i32>`
help: consider constraining the associated type `<T as X>::Y<i32>` to `Vec<i32>`
   |
LL | fn f<T: X<Y<i32> = Vec<i32>>>(a: T::Y<i32>) {
   |          +++++++++++++++++++

error: aborting due to previous error

For more information about this error, try `rustc --explain E0308`.