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