aboutsummaryrefslogtreecommitdiff
path: root/tests/ui/unexpected-struct-source.rs
blob: f39649424ce38afc561d079bef79c082463c10b5 (plain)
1
2
3
4
5
6
7
use thiserror::Error;

#[derive(Error, Debug)]
#[source]
pub struct Error;

fn main() {}