mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 08:44:35 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
12 lines
419 B
Plaintext
12 lines
419 B
Plaintext
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 1 previous error
|
|
|