2018-11-20 20:48:16 +00:00
|
|
|
error[E0713]: borrow may still be in use when destructor runs
|
2019-09-06 14:23:00 +00:00
|
|
|
--> $DIR/issue-53773.rs:41:22
|
2018-11-20 20:48:16 +00:00
|
|
|
|
|
|
|
|
LL | members.push(child.raw);
|
2023-06-22 20:30:23 +00:00
|
|
|
| ------- ^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| borrow later used here
|
2019-03-09 12:03:44 +00:00
|
|
|
LL |
|
2018-11-20 20:48:16 +00:00
|
|
|
LL | }
|
|
|
|
| - here, drop of `child` needs exclusive access to `*child.raw`, because the type `C<'_>` implements the `Drop` trait
|
|
|
|
|
|
|
|
|
= note: consider using a `let` binding to create a longer lived value
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0713`.
|