mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
15 lines
529 B
Text
15 lines
529 B
Text
error: lifetime may not live long enough
|
|
--> $DIR/regions-infer-contravariance-due-to-decl.rs:25:12
|
|
|
|
|
LL | fn use_<'short,'long>(c: Contravariant<'short>,
|
|
| ------ ----- lifetime `'long` defined here
|
|
| |
|
|
| lifetime `'short` defined here
|
|
...
|
|
LL | let _: Contravariant<'long> = c;
|
|
| ^^^^^^^^^^^^^^^^^^^^ type annotation requires that `'short` must outlive `'long`
|
|
|
|
|
= help: consider adding the following bound: `'short: 'long`
|
|
|
|
error: aborting due to 1 previous error
|
|
|