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