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