pyo3/tests/ui/invalid_intern_arg.rs

7 lines
158 B
Rust
Raw Normal View History

use pyo3::Python;
fn main() {
let foo = if true { "foo" } else { "bar" };
Python::with_gil(|py| py.import_bound(pyo3::intern!(py, foo)).unwrap());
}