mirror of
https://github.com/eyre-rs/eyre.git
synced 2025-09-28 05:21:34 +00:00
9 lines
89 B
Rust
9 lines
89 B
Rust
use eyre::eyre;
|
|
|
|
#[derive(Debug)]
|
|
struct Error;
|
|
|
|
fn main() {
|
|
let _ = eyre!(Error);
|
|
}
|