2018-08-08 07:28:26 -05:00
|
|
|
error[E0491]: in type `&'a &'b usize`, reference has a longer lifetime than the data it references
|
2020-01-29 18:55:37 -06:00
|
|
|
--> $DIR/regions-free-region-ordering-callee-4.rs:5:68
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2020-01-18 16:57:56 -06:00
|
|
|
LL | fn ordering4<'a, 'b, F>(a: &'a usize, b: &'b usize, x: F) where F: FnOnce(&'a &'b usize) {
|
2020-01-29 18:55:37 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
2021-10-05 07:11:51 -05:00
|
|
|
note: the pointer is valid for the lifetime `'a` as defined here
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/regions-free-region-ordering-callee-4.rs:5:14
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | fn ordering4<'a, 'b, F>(a: &'a usize, b: &'b usize, x: F) where F: FnOnce(&'a &'b usize) {
|
|
|
|
| ^^
|
2021-10-05 07:11:51 -05:00
|
|
|
note: but the referenced data is only valid for the lifetime `'b` as defined here
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/regions-free-region-ordering-callee-4.rs:5:18
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
|
LL | fn ordering4<'a, 'b, F>(a: &'a usize, b: &'b usize, x: F) where F: FnOnce(&'a &'b usize) {
|
|
|
|
| ^^
|
|
|
|
|
2024-02-09 06:17:55 -06:00
|
|
|
error: lifetime may not live long enough
|
|
|
|
--> $DIR/regions-free-region-ordering-callee-4.rs:8:12
|
|
|
|
|
|
|
|
|
LL | fn ordering4<'a, 'b, F>(a: &'a usize, b: &'b usize, x: F) where F: FnOnce(&'a &'b usize) {
|
|
|
|
| -- -- lifetime `'b` defined here
|
|
|
|
| |
|
|
|
|
| lifetime `'a` defined here
|
|
|
|
...
|
|
|
|
LL | let z: Option<&'a &'b usize> = None;
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^ requires that `'b` must outlive `'a`
|
|
|
|
|
|
|
|
|
= help: consider adding the following bound: `'b: 'a`
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-08-08 07:28:26 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0491`.
|