summaryrefslogtreecommitdiffstats
path: root/third_party/rust/thiserror/tests/ui/bad-field-attr.rs
blob: d5429b2b2637732dc720154f4e250a97049f59dc (plain)
1
2
3
4
5
6
7
use thiserror::Error;

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

fn main() {}