2020-06-23 14:19:20 +00:00
|
|
|
use pyo3::prelude::*;
|
|
|
|
|
|
|
|
#[pyclass]
|
|
|
|
struct MyClass {}
|
|
|
|
|
|
|
|
#[pymethods]
|
|
|
|
impl MyClass {
|
2024-05-03 07:42:30 +00:00
|
|
|
fn method_with_invalid_self_type(_slf: i32, _py: Python<'_>, _index: u32) {}
|
2020-06-23 14:19:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|