2022-06-01 08:07:00 +00:00
|
|
|
error[E0435]: attempt to use a non-constant value in a constant
|
2024-02-14 00:24:37 +00:00
|
|
|
--> tests/ui/invalid_intern_arg.rs:5:61
|
2022-06-01 08:07:00 +00:00
|
|
|
|
|
2024-02-14 00:24:37 +00:00
|
|
|
5 | Python::with_gil(|py| py.import_bound(pyo3::intern!(py, foo)).unwrap());
|
|
|
|
| ------------------^^^-
|
|
|
|
| | |
|
|
|
|
| | non-constant value
|
|
|
|
| help: consider using `let` instead of `static`: `let INTERNED`
|