blob: 181a66e02c4d02dc8d2da8bc1edf64451ab14f3b [file] [log] [blame]
use thiserror::Error;
#[derive(Debug)]
struct NoDisplay;
#[derive(Error, Debug)]
#[error("thread: {thread}")]
pub struct Error {
thread: NoDisplay,
}
fn main() {}