mirror of
https://github.com/eyre-rs/eyre.git
synced 2025-10-01 06:52:10 +00:00
9 lines
95 B
Rust
9 lines
95 B
Rust
use anyhow::anyhow;
|
|
|
|
#[derive(Debug)]
|
|
struct Error;
|
|
|
|
fn main() {
|
|
let _ = anyhow!(Error);
|
|
}
|