oden/third-party/vendor/thiserror/tests/test_deprecated.rs
2024-03-08 11:03:01 -08:00

10 lines
173 B
Rust

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