• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 
main()12 fn main() {}
13