diff options
Diffstat (limited to 'vendor/thiserror/tests/ui/source-struct-not-error.rs')
-rw-r--r-- | vendor/thiserror/tests/ui/source-struct-not-error.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/vendor/thiserror/tests/ui/source-struct-not-error.rs b/vendor/thiserror/tests/ui/source-struct-not-error.rs new file mode 100644 index 0000000..d59df1e --- /dev/null +++ b/vendor/thiserror/tests/ui/source-struct-not-error.rs @@ -0,0 +1,12 @@ +use thiserror::Error; + +#[derive(Debug)] +struct NotError; + +#[derive(Error, Debug)] +#[error("...")] +pub struct ErrorStruct { + source: NotError, +} + +fn main() {} |