pyo3/tests/ui/deprecations.rs

17 lines
178 B
Rust
Raw Normal View History

#![deny(deprecated)]
use pyo3::prelude::*;
2021-10-17 21:49:10 +00:00
#[pyclass]
struct DeprecatedCall;
#[pymethods]
impl DeprecatedCall {
#[call]
fn deprecated_call(&self) {}
}
fn main() {
}