summaryrefslogtreecommitdiffstats
path: root/src/test/ui/hrtb/hrtb-exists-forall-trait-invariant.stderr
blob: cb2ce8a4116aa887b5621130f33e9f5e1bbd391d (plain)
1
2
3
4
5
6
7
8
9
10
11
error: implementation of `Trait` is not general enough
  --> $DIR/hrtb-exists-forall-trait-invariant.rs:28:5
   |
LL |     foo::<()>();
   |     ^^^^^^^^^^^ implementation of `Trait` is not general enough
   |
   = note: `()` must implement `Trait<for<'b> fn(Cell<&'b u32>)>`
   = note: ...but it actually implements `Trait<fn(Cell<&'0 u32>)>`, for some specific lifetime `'0`

error: aborting due to previous error