thiserror/tests/ui/duplicate-fmt.rs
2019-10-11 11:47:57 -07:00

8 lines
111 B
Rust

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