6 lines
72 B
Rust
6 lines
72 B
Rust
|
use anyhow::anyhow;
|
||
|
|
||
|
fn main() {
|
||
|
let _ = anyhow!(&String::new());
|
||
|
}
|