fdd8a0dde5
Fixes #73159 This is similar to #69350 - if the user didn't initially write out a 'static lifetime, adding 'static in response to a lifetime error is usually the wrong thing to do.
24 lines
797 B
Plaintext
24 lines
797 B
Plaintext
error: lifetime may not live long enough
|
|
--> $DIR/regions-static-bound.rs:9:5
|
|
|
|
|
LL | fn static_id_wrong_way<'a>(t: &'a ()) -> &'static () where 'static: 'a {
|
|
| -- lifetime `'a` defined here
|
|
LL | t
|
|
| ^ returning this value requires that `'a` must outlive `'static`
|
|
|
|
error[E0621]: explicit lifetime required in the type of `u`
|
|
--> $DIR/regions-static-bound.rs:14:5
|
|
|
|
|
LL | static_id(&u);
|
|
| ^^^^^^^^^^^^^ lifetime `'static` required
|
|
|
|
error[E0621]: explicit lifetime required in the type of `v`
|
|
--> $DIR/regions-static-bound.rs:16:5
|
|
|
|
|
LL | static_id_indirect(&v);
|
|
| ^^^^^^^^^^^^^^^^^^^^^^ lifetime `'static` required
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0621`.
|