summaryrefslogtreecommitdiffstats
path: root/third_party/rust/thiserror/tests/ui/transparent-struct-not-error.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/thiserror/tests/ui/transparent-struct-not-error.rs')
-rw-r--r--third_party/rust/thiserror/tests/ui/transparent-struct-not-error.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/third_party/rust/thiserror/tests/ui/transparent-struct-not-error.rs b/third_party/rust/thiserror/tests/ui/transparent-struct-not-error.rs
new file mode 100644
index 0000000000..811ff53958
--- /dev/null
+++ b/third_party/rust/thiserror/tests/ui/transparent-struct-not-error.rs
@@ -0,0 +1,9 @@
+use thiserror::Error;
+
+#[derive(Error, Debug)]
+#[error(transparent)]
+pub struct Error {
+ message: String,
+}
+
+fn main() {}