2019-04-22 02:40:08 -05:00
|
|
|
error[E0713]: borrow may still be in use when destructor runs
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/issue28498-reject-ex1.rs:34:29
|
2016-10-14 10:55:45 -05:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | foo.data[0].1.set(Some(&foo.data[1]));
|
2019-04-22 02:40:08 -05:00
|
|
|
| ^^^^^^^^
|
2017-12-13 19:27:23 -06:00
|
|
|
...
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | }
|
2019-04-22 02:40:08 -05:00
|
|
|
| -
|
|
|
|
| |
|
|
|
|
| here, drop of `foo` needs exclusive access to `foo.data`, because the type `Foo<Concrete<'_>>` implements the `Drop` trait
|
|
|
|
| borrow might be used here, when `foo` is dropped and runs the `Drop` code for type `Foo`
|
2016-10-14 10:55:45 -05:00
|
|
|
|
|
2019-04-22 02:40:08 -05:00
|
|
|
= note: consider using a `let` binding to create a longer lived value
|
2016-10-14 10:55:45 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2016-10-14 10:55:45 -05:00
|
|
|
|
2019-04-22 02:40:08 -05:00
|
|
|
For more information about this error, try `rustc --explain E0713`.
|