rust/tests/ui/nll/user-annotations/inherent-associated-constants.stderr

11 lines
327 B
Plaintext
Raw Normal View History

error: lifetime may not live long enough
2022-04-01 12:13:25 -05:00
--> $DIR/inherent-associated-constants.rs:8:5
|
LL | fn non_wf_associated_const<'a>(x: i32) {
| -- lifetime `'a` defined here
2019-03-09 06:03:44 -06:00
LL | A::<'a>::IC;
| ^^^^^^^^^^^ requires that `'a` must outlive `'static`
2018-11-28 15:05:36 -06:00
error: aborting due to previous error