File: wrong-interpolation.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 (5 lines) | stat: -rw-r--r-- 84 bytes parent folder | download | duplicates (53)
1
2
3
4
5
use anyhow::{bail, Result};

fn main() -> Result<()> {
    bail!("{} not found");
}