rust/tests/ui/span/issue28498-reject-ex1.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

18 lines
634 B
Plaintext
Raw Normal View History

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
|
2018-02-22 18:42:32 -06:00
LL | foo.data[0].1.set(Some(&foo.data[1]));
| ^^^^^^^^
2017-12-13 19:27:23 -06:00
...
2018-02-22 18:42:32 -06:00
LL | }
| -
| |
| 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`
|
= note: consider using a `let` binding to create a longer lived value
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0713`.