2019-01-27 05:03:21 -06:00
|
|
|
error: lifetime may not live long enough
|
2022-04-01 12:13:25 -05:00
|
|
|
--> $DIR/lub-if.rs:28:9
|
2019-01-27 05:03:21 -06:00
|
|
|
|
|
|
|
|
LL | pub fn opt_str2<'a>(maybestr: &'a Option<String>) -> &'static str {
|
|
|
|
| -- lifetime `'a` defined here
|
|
|
|
...
|
|
|
|
LL | s
|
|
|
|
| ^ returning this value requires that `'a` must outlive `'static`
|
|
|
|
|
|
|
|
error: lifetime may not live long enough
|
2022-04-01 12:13:25 -05:00
|
|
|
--> $DIR/lub-if.rs:36:9
|
2019-01-27 05:03:21 -06:00
|
|
|
|
|
|
|
|
LL | pub fn opt_str3<'a>(maybestr: &'a Option<String>) -> &'static str {
|
|
|
|
| -- lifetime `'a` defined here
|
|
|
|
...
|
|
|
|
LL | s
|
|
|
|
| ^ returning this value requires that `'a` must outlive `'static`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|