2019-01-27 05:03:21 -06:00
|
|
|
error[E0521]: borrowed data escapes outside of function
|
|
|
|
--> $DIR/region-invariant-static-error-reporting.rs:15:9
|
|
|
|
|
|
|
|
|
LL | fn unify<'a>(x: Option<Invariant<'a>>, f: fn(Invariant<'a>)) {
|
2021-10-03 15:25:26 -05:00
|
|
|
| -- - `x` is a reference that is only valid in the function body
|
|
|
|
| |
|
|
|
|
| lifetime `'a` defined here
|
2019-01-27 05:03:21 -06:00
|
|
|
LL | let bad = if x.is_some() {
|
|
|
|
LL | x.unwrap()
|
2021-10-03 15:25:26 -05:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| `x` escapes the function body here
|
|
|
|
| argument requires that `'a` must outlive `'static`
|
2019-01-27 05:03:21 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2021-02-02 11:57:34 -06:00
|
|
|
For more information about this error, try `rustc --explain E0521`.
|