mirror of
https://github.com/dtolnay/thiserror.git
synced 2025-04-03 21:07:38 +03:00
12 lines
193 B
Rust
12 lines
193 B
Rust
use thiserror::Error;
|
|
|
|
#[derive(Error, Debug)]
|
|
#[error("error: {r#fn}")]
|
|
pub struct Error {
|
|
r#fn: &'static str,
|
|
}
|
|
|
|
fn main() {
|
|
let r#fn = "...";
|
|
let _ = format!("error: {r#fn}");
|
|
}
|