fparkan/vendor/thiserror/tests/test_deprecated.rs

11 lines
173 B
Rust
Raw Normal View History

#![deny(deprecated, clippy::all, clippy::pedantic)]
use thiserror::Error;
#[derive(Error, Debug)]
pub enum Error {
#[deprecated]
#[error("...")]
Deprecated,
}