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

8 lines
111 B
Rust

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