summaryrefslogtreecommitdiff
path: root/subprojects/thiserror/tests/ui/expression-fallback.rs
blob: 72691295e70a2c720ae579071711c6d1720f42bf (plain)
1
2
3
4
5
6
7
use thiserror::Error;

#[derive(Error, Debug)]
#[error("".yellow)]
pub struct ArgError;

fn main() {}