diff options
Diffstat (limited to 'vendor/thiserror/tests/test_deprecated.rs')
-rw-r--r-- | vendor/thiserror/tests/test_deprecated.rs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/vendor/thiserror/tests/test_deprecated.rs b/vendor/thiserror/tests/test_deprecated.rs deleted file mode 100644 index 5524666..0000000 --- a/vendor/thiserror/tests/test_deprecated.rs +++ /dev/null @@ -1,10 +0,0 @@ -#![deny(deprecated, clippy::all, clippy::pedantic)] - -use thiserror::Error; - -#[derive(Error, Debug)] -pub enum Error { - #[deprecated] - #[error("...")] - Deprecated, -} |