rustc/vendor/anyhow/tests/ui/no-impl.rs
2020-03-25 15:04:31 +01:00

9 lines
95 B
Rust

use anyhow::anyhow;
#[derive(Debug)]
struct Error;
fn main() {
let _ = anyhow!(Error);
}