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, 11 insertions, 0 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
new file mode 100644
index 000000000..d48866dce
--- /dev/null
+++ b/src/test/ui/borrowck/borrowck-fn-in-const-c.stderr
@@ -0,0 +1,11 @@
+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`.