blob: d59df1eef8fc126e300442afc2c1a6433b0adf26 [file] [log] [blame]
use thiserror::Error;
#[derive(Debug)]
struct NotError;
#[derive(Error, Debug)]
#[error("...")]
pub struct ErrorStruct {
source: NotError,
}
fn main() {}