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

#[derive(Error, Debug)]
pub enum Error {
    #[error(transparent)]
    Other(String),
}

fn main() {}