summaryrefslogtreecommitdiff
path: root/subprojects/thiserror/tests/ui/display-underscore.rs
blob: 335614bd013a874e626a8060c7801cecaa92192a (plain)
1
2
3
4
5
6
7
use thiserror::Error;

#[derive(Error, Debug)]
#[error("{_}")]
pub struct Error;

fn main() {}