1 2 3 4 5 6 7 8
use anyhow::anyhow; #[derive(Debug)] struct Error; fn main() { let _ = anyhow!(Error); }