summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/user-annotations/inherent-associated-constants.stderr
blob: ffbfc40f5372e8f7c677e49a3539fa6352737c98 (plain)
1
2
3
4
5
6
7
8
9
10
error: lifetime may not live long enough
  --> $DIR/inherent-associated-constants.rs:8:5
   |
LL | fn non_wf_associated_const<'a>(x: i32) {
   |                            -- lifetime `'a` defined here
LL |     A::<'a>::IC;
   |     ^^^^^^^^^^^ requires that `'a` must outlive `'static`

error: aborting due to previous error