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