diff options
Diffstat (limited to 'vendor/thiserror/tests/ui/fallback-impl-with-display.rs')
-rw-r--r-- | vendor/thiserror/tests/ui/fallback-impl-with-display.rs | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/vendor/thiserror/tests/ui/fallback-impl-with-display.rs b/vendor/thiserror/tests/ui/fallback-impl-with-display.rs deleted file mode 100644 index 3341187..0000000 --- a/vendor/thiserror/tests/ui/fallback-impl-with-display.rs +++ /dev/null @@ -1,14 +0,0 @@ -use std::fmt::{self, Display}; -use thiserror::Error; - -#[derive(Error, Debug)] -#[error] -pub struct MyError; - -impl Display for MyError { - fn fmt(&self, _formatter: &mut fmt::Formatter) -> fmt::Result { - unimplemented!() - } -} - -fn main() {} |