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

#[derive(Debug)]
pub struct NotError;

#[derive(Error, Debug)]
#[error("...")]
pub enum ErrorEnum {
    Broken(#[source] NotError),
}

fn main() {}