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