2019-01-27 11:03:21 +00:00
|
|
|
error[E0521]: borrowed data escapes outside of function
|
2022-05-11 20:49:39 +00:00
|
|
|
--> $DIR/dyn-trait.rs:24:5
|
2019-01-27 11:03:21 +00:00
|
|
|
|
|
|
|
|
LL | fn with_dyn_debug_static<'a>(x: Box<dyn Debug + 'a>) {
|
2021-10-03 20:25:26 +00:00
|
|
|
| -- - `x` is a reference that is only valid in the function body
|
|
|
|
| |
|
|
|
|
| lifetime `'a` defined here
|
2019-01-27 11:03:21 +00:00
|
|
|
LL | static_val(x);
|
2021-10-03 20:25:26 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| `x` escapes the function body here
|
|
|
|
| argument requires that `'a` must outlive `'static`
|
2019-01-27 11:03:21 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2019-01-27 11:03:21 +00:00
|
|
|
|
2021-02-02 17:57:34 +00:00
|
|
|
For more information about this error, try `rustc --explain E0521`.
|