]> git.lizzy.rs Git - rust.git/blob - src/test/ui/nll/issue-31567.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / nll / issue-31567.stderr
1 error[E0713]: borrow may still be in use when destructor runs
2   --> $DIR/issue-31567.rs:22:26
3    |
4 LL |     let s_inner: &'a S = &*v.0; //~ ERROR borrow may still be in use when destructor runs [E0713]
5    |                          ^^^^^
6 LL |     &s_inner.0
7 LL | }
8    | - here, drop of `v` needs exclusive access to `*v.0`, because the type `VecWrapper<'_>` implements the `Drop` trait
9    |
10 note: borrowed value must be valid for the lifetime 'a as defined on the function body at 21:17...
11   --> $DIR/issue-31567.rs:21:17
12    |
13 LL | fn get_dangling<'a>(v: VecWrapper<'a>) -> &'a u32 {
14    |                 ^^
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0713`.