pyo3/tests/ui/missing_intopy.rs

8 lines
76 B
Rust

struct Blah;
#[pyo3::pyfunction]
fn blah() -> Blah{
Blah
}
fn main(){}