pyo3/tests/ui/missing_intopy.rs
Bruno Kolenbrander c57e5098b8
Fix IntoPyCallbackOutput paper cuts (#2326)
* Implement IntoPy for arrays of IntoPy

* Improve `IntoPyCallbackOutput` compile error
2022-05-09 18:15:43 +01:00

8 lines
76 B
Rust

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