summaryrefslogtreecommitdiffstats
path: root/vendor/thiserror/tests/ui/unexpected-struct-source.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/thiserror/tests/ui/unexpected-struct-source.rs')
-rw-r--r--vendor/thiserror/tests/ui/unexpected-struct-source.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/vendor/thiserror/tests/ui/unexpected-struct-source.rs b/vendor/thiserror/tests/ui/unexpected-struct-source.rs
new file mode 100644
index 000000000..f39649424
--- /dev/null
+++ b/vendor/thiserror/tests/ui/unexpected-struct-source.rs
@@ -0,0 +1,7 @@
+use thiserror::Error;
+
+#[derive(Error, Debug)]
+#[source]
+pub struct Error;
+
+fn main() {}