11 lines
450 B
Plaintext
11 lines
450 B
Plaintext
error[E0505]: cannot move out of `gil` because it is borrowed
|
|
--> tests/ui/wrong_aspyref_lifetimes.rs:7:10
|
|
|
|
|
6 | let dict: &PyDict = dict.as_ref(gil.python());
|
|
| ------------ borrow of `gil` occurs here
|
|
7 | drop(gil);
|
|
| ^^^ move out of `gil` occurs here
|
|
8 |
|
|
9 | let _py: Python = dict.py(); // Obtain a Python<'p> without GIL.
|
|
| --------- borrow later used here
|