mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-01 03:03:40 +00:00
12 lines
406 B
Plaintext
12 lines
406 B
Plaintext
|
error: implementation of `MyTrait` is not general enough
|
||
|
--> $DIR/opaque-hrtb.rs:13:5
|
||
|
|
|
||
|
LL | bar()
|
||
|
| ^^^^^ implementation of `MyTrait` is not general enough
|
||
|
|
|
||
|
= note: `impl MyTrait<&'2 str>` must implement `MyTrait<&'1 str>`, for any lifetime `'1`...
|
||
|
= note: ...but it actually implements `MyTrait<&'2 str>`, for some specific lifetime `'2`
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|