2019-04-07 16:07:36 +01:00
|
|
|
error: lifetime may not live long enough
|
2022-04-01 13:13:25 -04:00
|
|
|
--> $DIR/constant-in-expr-normalize.rs:18:5
|
2019-04-07 16:07:36 +01:00
|
|
|
|
|
|
|
|
LL | fn foo<'a>(_: &'a u32) -> &'static u32 {
|
|
|
|
| -- lifetime `'a` defined here
|
|
|
|
LL | <() as Foo<'a>>::C
|
|
|
|
| ^^^^^^^^^^^^^^^^^^ returning this value requires that `'a` must outlive `'static`
|
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2019-04-07 16:07:36 +01:00
|
|
|
|