mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 05:00:17 +00:00
12 lines
411 B
Plaintext
12 lines
411 B
Plaintext
error: implementation of `Trait` is not general enough
|
|
--> $DIR/hrtb-exists-forall-trait-contravariant.rs:34:5
|
|
|
|
|
LL | foo::<()>();
|
|
| ^^^^^^^^^^^ implementation of `Trait` is not general enough
|
|
|
|
|
= note: `()` must implement `Trait<for<'b> fn(&'b u32)>`
|
|
= note: ...but it actually implements `Trait<fn(&'0 u32)>`, for some specific lifetime `'0`
|
|
|
|
error: aborting due to 1 previous error
|
|
|