2019-04-22 08:40:08 +01:00
|
|
|
error[E0713]: borrow may still be in use when destructor runs
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue28498-reject-ex1.rs:34:29
|
2016-10-14 18:55:45 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | foo.data[0].1.set(Some(&foo.data[1]));
|
2019-04-22 08:40:08 +01:00
|
|
|
| ^^^^^^^^
|
2017-12-13 17:27:23 -08:00
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | }
|
2019-04-22 08:40:08 +01: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 18:55:45 +03:00
|
|
|
|
|
2019-04-22 08:40:08 +01:00
|
|
|
= note: consider using a `let` binding to create a longer lived value
|
2016-10-14 18:55:45 +03:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2016-10-14 18:55:45 +03:00
|
|
|
|
2019-04-22 08:40:08 +01:00
|
|
|
For more information about this error, try `rustc --explain E0713`.
|