kauma/vendor/anyhow/tests/ui/no-impl.rs
2024-10-23 10:21:09 +02:00

8 lines
95 B
Rust

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