]> git.lizzy.rs Git - rust.git/blob - tests/ui/regions/regions-variance-invariant-use-contravariant.stderr
internally change regions to be covariant
[rust.git] / tests / ui / regions / regions-variance-invariant-use-contravariant.stderr
1 error: lifetime may not live long enough
2   --> $DIR/regions-variance-invariant-use-contravariant.rs:20:12
3    |
4 LL | fn use_<'short,'long>(c: Invariant<'long>,
5    |         ------ ----- lifetime `'long` defined here
6    |         |
7    |         lifetime `'short` defined here
8 ...
9 LL |     let _: Invariant<'short> = c;
10    |            ^^^^^^^^^^^^^^^^^ type annotation requires that `'short` must outlive `'long`
11    |
12    = help: consider adding the following bound: `'short: 'long`
13    = note: requirement occurs because of the type `Invariant<'_>`, which makes the generic argument `'_` invariant
14    = note: the struct `Invariant<'a>` is invariant over the parameter `'a`
15    = help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance
16
17 error: aborting due to previous error
18