mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 16:33:44 +00:00
9 lines
95 B
Rust
9 lines
95 B
Rust
use anyhow::anyhow;
|
|
|
|
#[derive(Debug)]
|
|
struct Error;
|
|
|
|
fn main() {
|
|
let _ = anyhow!(Error);
|
|
}
|