summaryrefslogtreecommitdiffstats
path: root/vendor/thiserror/tests/ui/duplicate-transparent.rs
blob: 49c0e466792936a1234e2fa06fc53184ea3b8194 (plain)
1
2
3
4
5
6
7
8
use thiserror::Error;

#[derive(Error, Debug)]
#[error(transparent)]
#[error(transparent)]
pub struct Error(anyhow::Error);

fn main() {}