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