File: no-impl.rs

package info (click to toggle)
rust-anyhow 1.0.99-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 500 kB
  • sloc: makefile: 2
file content (8 lines) | stat: -rw-r--r-- 95 bytes parent folder | download | duplicates (72)
1
2
3
4
5
6
7
8
use anyhow::anyhow;

#[derive(Debug)]
struct Error;

fn main() {
    let _ = anyhow!(Error);
}