2019-02-11 05:18:40 -06:00
|
|
|
error: lifetime may not live long enough
|
2022-04-01 12:13:25 -05:00
|
|
|
--> $DIR/issue-58299.rs:14:9
|
2019-02-11 05:18:40 -06:00
|
|
|
|
|
|
|
|
LL | fn foo<'a>(x: i32) {
|
|
|
|
| -- lifetime `'a` defined here
|
|
|
|
...
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | A::<'a>::X..=A::<'static>::X => (),
|
2019-02-11 05:18:40 -06:00
|
|
|
| ^^^^^^^^^^ requires that `'a` must outlive `'static`
|
2018-11-28 15:05:36 -06:00
|
|
|
|
2019-02-11 05:18:40 -06:00
|
|
|
error: lifetime may not live long enough
|
2022-04-01 12:13:25 -05:00
|
|
|
--> $DIR/issue-58299.rs:22:27
|
2019-02-11 05:18:40 -06:00
|
|
|
|
|
|
|
|
LL | fn bar<'a>(x: i32) {
|
|
|
|
| -- lifetime `'a` defined here
|
|
|
|
...
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | A::<'static>::X..=A::<'a>::X => (),
|
2019-02-11 05:18:40 -06:00
|
|
|
| ^^^^^^^^^^ requires that `'a` must outlive `'static`
|
2018-11-28 15:05:36 -06:00
|
|
|
|
2019-02-11 05:18:40 -06:00
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|