summaryrefslogtreecommitdiff
path: root/tests/ui/borrowck/borrowck-fn-in-const-c.stderr
blob: d48866dce04238de37a3a24ff0792bd885073c47 (plain)
1
2
3
4
5
6
7
8
9
10
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`.