]> git.lizzy.rs Git - rust.git/blob - tests/ui/higher-rank-trait-bounds/hrtb-exists-forall-trait-contravariant.stderr
Rollup merge of #106797 - FawazTirmizi:dev/issues/104284, r=bjorn3
[rust.git] / tests / ui / higher-rank-trait-bounds / hrtb-exists-forall-trait-contravariant.stderr
1 error: implementation of `Trait` is not general enough
2   --> $DIR/hrtb-exists-forall-trait-contravariant.rs:34:5
3    |
4 LL |     foo::<()>();
5    |     ^^^^^^^^^^^ implementation of `Trait` is not general enough
6    |
7    = note: `()` must implement `Trait<for<'b> fn(&'b u32)>`
8    = note: ...but it actually implements `Trait<fn(&'0 u32)>`, for some specific lifetime `'0`
9
10 error: aborting due to previous error
11