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