aboutsummaryrefslogtreecommitdiff
path: root/tests/test_deprecated.rs
blob: 5524666abc05c4873433beac7cadbe96f1d1891f (plain)
1
2
3
4
5
6
7
8
9
10
#![deny(deprecated, clippy::all, clippy::pedantic)]

use thiserror::Error;

#[derive(Error, Debug)]
pub enum Error {
    #[deprecated]
    #[error("...")]
    Deprecated,
}