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

11 lines
372 B
Plaintext
Raw Normal View History

error: lifetime may not live long enough
--> $DIR/inherent-associated-constants.rs:10:5
|
LL | fn non_wf_associated_const<'a>(x: i32) {
| -- lifetime `'a` defined here
LL | A::<'a>::IC; //~ ERROR lifetime may not live long enough
| ^^^^^^^^^^^ requires that `'a` must outlive `'static`
error: aborting due to previous error