From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/ui/nll/issue-53773.stderr | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/ui/nll/issue-53773.stderr (limited to 'tests/ui/nll/issue-53773.stderr') diff --git a/tests/ui/nll/issue-53773.stderr b/tests/ui/nll/issue-53773.stderr new file mode 100644 index 000000000..90cba2a14 --- /dev/null +++ b/tests/ui/nll/issue-53773.stderr @@ -0,0 +1,14 @@ +error[E0713]: borrow may still be in use when destructor runs + --> $DIR/issue-53773.rs:41:22 + | +LL | members.push(child.raw); + | -------------^^^^^^^^^- borrow later used here +LL | +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`. -- cgit v1.2.3