9 lines
95 B
Rust
9 lines
95 B
Rust
|
use anyhow::anyhow;
|
||
|
|
||
|
#[derive(Debug)]
|
||
|
struct Error;
|
||
|
|
||
|
fn main() {
|
||
|
let _ = anyhow!(Error);
|
||
|
}
|