summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/issue-53773.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/issue-53773.stderr')
-rw-r--r--src/test/ui/nll/issue-53773.stderr14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/nll/issue-53773.stderr b/src/test/ui/nll/issue-53773.stderr
deleted file mode 100644
index 90cba2a14..000000000
--- a/src/test/ui/nll/issue-53773.stderr
+++ /dev/null
@@ -1,14 +0,0 @@
-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`.