thiserror/tests/test_deprecated.rs
2022-08-30 19:14:00 -07:00

10 lines
173 B
Rust

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