Files
fparkan/vendor/thiserror/tests/ui/duplicate-fmt.rs
2024-01-08 01:21:28 +04:00

9 lines
111 B
Rust

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