fune/third_party/rust/anyhow/tests/ui/empty-ensure.rs
Mike Hommey 48c99f617b Bug 1744669 - Bulk update of rust crates. a. r=emilio
This updates all crates that can be updated with no addition of new
crates, that start with letter a.

Differential Revision: https://phabricator.services.mozilla.com/D133027
2021-12-10 04:00:07 +00:00

6 lines
85 B
Rust

use anyhow::{ensure, Result};
fn main() -> Result<()> {
ensure!();
Ok(())
}