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, 14 insertions, 0 deletions
diff --git a/vendor/thiserror/tests/ui/fallback-impl-with-display.rs b/vendor/thiserror/tests/ui/fallback-impl-with-display.rs new file mode 100644 index 0000000..3341187 --- /dev/null +++ b/vendor/thiserror/tests/ui/fallback-impl-with-display.rs @@ -0,0 +1,14 @@ +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() {} |