summaryrefslogtreecommitdiffstats
path: root/vendor/thiserror/tests/ui/source-enum-not-error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/thiserror/tests/ui/source-enum-not-error.rs')
-rw-r--r--vendor/thiserror/tests/ui/source-enum-not-error.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/vendor/thiserror/tests/ui/source-enum-not-error.rs b/vendor/thiserror/tests/ui/source-enum-not-error.rs
new file mode 100644
index 000000000..3eb0d3e86
--- /dev/null
+++ b/vendor/thiserror/tests/ui/source-enum-not-error.rs
@@ -0,0 +1,14 @@
+use thiserror::Error;
+
+#[derive(Debug)]
+pub struct NotError;
+
+#[derive(Error, Debug)]
+#[error("...")]
+pub enum ErrorEnum {
+ Broken {
+ source: NotError,
+ },
+}
+
+fn main() {}