]> git.proxmox.com Git - rustc.git/blob - vendor/thiserror/tests/ui/source-struct-not-error.rs
New upstream version 1.49.0+dfsg1
[rustc.git] / vendor / thiserror / tests / ui / source-struct-not-error.rs
1 use thiserror::Error;
2
3 #[derive(Debug)]
4 struct NotError;
5
6 #[derive(Error, Debug)]
7 #[error("...")]
8 pub struct ErrorStruct {
9 source: NotError,
10 }
11
12 fn main() {}