oden/third-party/vendor/thiserror/tests/ui/no-display.rs
2024-03-08 11:03:01 -08:00

12 lines
170 B
Rust

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