fparkan/vendor/thiserror/tests/ui/duplicate-fmt.rs

9 lines
111 B
Rust
Raw Normal View History

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