rust-ipfs/vendor/thiserror/tests/test_deprecated.rs

11 lines
173 B
Rust
Raw Normal View History

2024-10-18 11:36:33 +03:00
#![deny(deprecated, clippy::all, clippy::pedantic)]
use thiserror::Error;
#[derive(Error, Debug)]
pub enum Error {
#[deprecated]
#[error("...")]
Deprecated,
}