2019-01-27 05:03:21 -06:00
|
|
|
error: lifetime may not live long enough
|
2022-04-01 12:13:25 -05:00
|
|
|
--> $DIR/regions-infer-invariance-due-to-mutability-4.rs:10:5
|
2019-01-27 05:03:21 -06:00
|
|
|
|
|
|
|
|
LL | fn to_longer_lifetime<'r>(b_isize: Invariant<'r>) -> Invariant<'static> {
|
|
|
|
| -- lifetime `'r` defined here
|
|
|
|
LL | b_isize
|
|
|
|
| ^^^^^^^ returning this value requires that `'r` must outlive `'static`
|
2021-09-27 20:22:44 -05:00
|
|
|
|
|
2022-04-02 17:32:39 -05: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 05:03:21 -06:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2019-01-27 05:03:21 -06:00
|
|
|
|