summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/bugs/issue-88460.stderr
blob: 6612c4b49446fe371c4072817b019ac35459dca6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error[E0277]: the trait bound `for<'a> <_ as Trait>::Assoc<'a>: Marker` is not satisfied
  --> $DIR/issue-88460.rs:28:10
   |
LL |     test(Foo);
   |     ---- ^^^ the trait `for<'a> Marker` is not implemented for `<_ as Trait>::Assoc<'a>`
   |     |
   |     required by a bound introduced by this call
   |
   = help: the trait `Marker` is implemented for `()`
note: required by a bound in `test`
  --> $DIR/issue-88460.rs:15:27
   |
LL | fn test<T>(value: T)
   |    ---- required by a bound in this
...
LL |     for<'a> T::Assoc<'a>: Marker,
   |                           ^^^^^^ required by this bound in `test`

error: aborting due to previous error

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