oden/third-party/vendor/anyhow/tests/ui/no-impl.rs
2024-03-08 11:03:01 -08:00

8 lines
95 B
Rust

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