#![forbid(unsafe_code)]
#![allow(dead_code)]
fn benchmark_and_example_fixture(result: Result<u32, &'static str>, value: Option<u32>) {
let _ = result.unwrap();
let _ = value.expect("benchmarks and examples should avoid expect");
let _ = result.unwrap_or(0);
}