diff options
Diffstat (limited to 'vendor/thiserror/tests/ui/unexpected-field-fmt.rs')
-rw-r--r-- | vendor/thiserror/tests/ui/unexpected-field-fmt.rs | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/vendor/thiserror/tests/ui/unexpected-field-fmt.rs b/vendor/thiserror/tests/ui/unexpected-field-fmt.rs deleted file mode 100644 index 7c439d9..0000000 --- a/vendor/thiserror/tests/ui/unexpected-field-fmt.rs +++ /dev/null @@ -1,11 +0,0 @@ -use thiserror::Error; - -#[derive(Error, Debug)] -pub enum Error { - What { - #[error("...")] - io: std::io::Error, - }, -} - -fn main() {} |