fparkan/vendor/thiserror/tests/ui/no-display.rs

13 lines
170 B
Rust
Raw Normal View History

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