| Current Path : /usr/local/src/clamav-1.0.9/libclamav_rust/.cargo/vendor/thiserror/tests/ |
| Current File : //usr/local/src/clamav-1.0.9/libclamav_rust/.cargo/vendor/thiserror/tests/test_deprecated.rs |
#![deny(deprecated, clippy::all, clippy::pedantic)]
use thiserror::Error;
#[derive(Error, Debug)]
pub enum Error {
#[deprecated]
#[error("...")]
Deprecated,
}