thiserror-nostd-notrait/tests/ui/no-display.rs

11 lines
156 B
Rust

use std::thread::Thread;
use thiserror::Error;
#[derive(Error, Debug)]
#[error("thread: {thread}")]
pub struct Error {
thread: Thread,
}
fn main() {}