summaryrefslogtreecommitdiffstats
path: root/third_party/rust/thiserror/tests/ui/transparent-struct-unnamed-field-not-error.rs
blob: b4f7fbbfd5e2ec9baa42a5a1e0f5e04e9a15fed3 (plain)
1
2
3
4
5
6
7
use thiserror::Error;

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

fn main() {}