summaryrefslogtreecommitdiffstats
path: root/tests/ui/generic-associated-types/mismatched-where-clause-regions.stderr
blob: ee90f61aabc745c2725cd592c621c7f86a9ad2b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error[E0276]: impl has stricter requirements than trait
  --> $DIR/mismatched-where-clause-regions.rs:8:38
   |
LL |     type T<'a1, 'b1>
   |     ---------------- definition of `T` from trait
...
LL |     type T<'a2, 'b2> = () where 'b2: 'a2;
   |                                      ^^^ impl has extra requirement `'b2: 'a2`
   |
help: copy the `where` clause predicates from the trait
   |
LL |     type T<'a2, 'b2> = () where 'a2: 'b2;
   |                           ~~~~~~~~~~~~~~

error: aborting due to 1 previous error

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