rustc/vendor/thiserror/tests/ui/duplicate-fmt.rs
2020-12-02 10:43:25 +01:00

9 lines
111 B
Rust

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