summaryrefslogtreecommitdiff
path: root/subprojects/thiserror/tests/ui/struct-with-fmt.rs
diff options
context:
space:
mode:
Diffstat (limited to 'subprojects/thiserror/tests/ui/struct-with-fmt.rs')
-rw-r--r--subprojects/thiserror/tests/ui/struct-with-fmt.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/subprojects/thiserror/tests/ui/struct-with-fmt.rs b/subprojects/thiserror/tests/ui/struct-with-fmt.rs
deleted file mode 100644
index 73bf79f..0000000
--- a/subprojects/thiserror/tests/ui/struct-with-fmt.rs
+++ /dev/null
@@ -1,7 +0,0 @@
-use thiserror::Error;
-
-#[derive(Error, Debug)]
-#[error(fmt = core::fmt::Octal::fmt)]
-pub struct Error(i32);
-
-fn main() {}