2020-06-03 07:38:34 +02:00
|
|
|
error[E0597]: `scope3` does not live long enough
|
2023-07-11 20:50:03 +02:00
|
|
|
--> tests/compile_fail/try_catch_message_lifetime.rs:11:43
|
2019-12-22 16:22:44 +01:00
|
|
|
|
|
2021-10-27 14:32:12 +02:00
|
|
|
9 | let _message = {
|
2020-06-03 07:38:34 +02:00
|
|
|
| -------- borrow later stored here
|
2021-10-27 14:32:12 +02:00
|
|
|
10 | let mut scope3 = v8::HandleScope::new(&mut scope2);
|
2023-07-11 20:50:03 +02:00
|
|
|
| ---------- binding `scope3` declared here
|
2021-10-27 14:32:12 +02:00
|
|
|
11 | let mut scope4 = v8::HandleScope::new(&mut scope3);
|
2020-06-03 07:38:34 +02:00
|
|
|
| ^^^^^^^^^^^ borrowed value does not live long enough
|
2020-06-26 01:40:53 +02:00
|
|
|
...
|
2021-10-27 14:32:12 +02:00
|
|
|
14 | };
|
2020-06-03 07:38:34 +02:00
|
|
|
| - `scope3` dropped here while still borrowed
|