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