summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/borrowck-fn-in-const-c.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/borrowck/borrowck-fn-in-const-c.stderr')
-rw-r--r--src/test/ui/borrowck/borrowck-fn-in-const-c.stderr11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/test/ui/borrowck/borrowck-fn-in-const-c.stderr b/src/test/ui/borrowck/borrowck-fn-in-const-c.stderr
deleted file mode 100644
index d48866dce..000000000
--- a/src/test/ui/borrowck/borrowck-fn-in-const-c.stderr
+++ /dev/null
@@ -1,11 +0,0 @@
-error[E0713]: borrow may still be in use when destructor runs
- --> $DIR/borrowck-fn-in-const-c.rs:17:16
- |
-LL | return &local.inner;
- | ^^^^^^^^^^^^ returning this value requires that `local.inner` is borrowed for `'static`
-LL | }
- | - here, drop of `local` needs exclusive access to `local.inner`, because the type `DropString` implements the `Drop` trait
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0713`.