2024-12-04 03:19:03 -08:00
|
|
|
error: lifetime may not live long enough
|
|
|
|
|
--> $DIR/region-invariant-static-error-reporting.rs:16:9
|
2019-01-27 11:03:21 +00:00
|
|
|
|
|
|
|
|
|
LL | fn unify<'a>(x: Option<Invariant<'a>>, f: fn(Invariant<'a>)) {
|
2024-12-04 03:19:03 -08:00
|
|
|
| -- lifetime `'a` defined here
|
|
|
|
|
...
|
|
|
|
|
LL | mk_static()
|
|
|
|
|
| ^^^^^^^^^^^ assignment requires that `'a` must outlive `'static`
|
2021-09-27 20:22:44 -05:00
|
|
|
|
|
2022-04-02 15:32:39 -07:00
|
|
|
= note: requirement occurs because of the type `Invariant<'_>`, which makes the generic argument `'_` invariant
|
|
|
|
|
= note: the struct `Invariant<'a>` is invariant over the parameter `'a`
|
2021-09-27 20:22:44 -05:00
|
|
|
= help: see <https://doc.rust-lang.org/nomicon/subtyping.html> for more information about variance
|
2019-01-27 11:03:21 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2019-01-27 11:03:21 +00:00
|
|
|
|