summaryrefslogtreecommitdiffstats
path: root/vendor/thiserror/tests/ui/source-struct-not-error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/thiserror/tests/ui/source-struct-not-error.rs')
-rw-r--r--vendor/thiserror/tests/ui/source-struct-not-error.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/thiserror/tests/ui/source-struct-not-error.rs b/vendor/thiserror/tests/ui/source-struct-not-error.rs
new file mode 100644
index 000000000..d59df1eef
--- /dev/null
+++ b/vendor/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() {}