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