pyo3/tests/ui/reject_generics.rs

9 lines
90 B
Rust

use pyo3::prelude::*;
#[pyclass]
struct ClassWithGenerics<A> {
a: A,
}
fn main() {}