• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 use anyhow::{bail, Result};
2 
main() -> Result<()>3 fn main() -> Result<()> {
4     bail!("{} not found");
5 }
6