// compile-flags: -C no-prepopulate-passes -O -Z mir-opt-level=3 -Zunsound-mir-opts // Ensure that `x?` has no overhead on `Result` due to identity `match`es in lowering. // This requires inlining to trigger the MIR optimizations in `SimplifyArmIdentity`. #![crate_type = "lib"] type R = Result; // This was written to the `?` from `try_trait`, // but `try_trait_v2` uses a different structure, // so the relevant desugar is copied inline // in order to keep the test testing the same thing. #[no_mangle] pub fn try_identity(x: R) -> R { // CHECK: start: // CHECK-NOT: br {{.*}} // CHECK ret void let y = match into_result(x) { Err(e) => return from_error(From::from(e)), Ok(v) => v, }; Ok(y) } #[inline] fn into_result(r: Result) -> Result { r } #[inline] fn from_error(e: E) -> Result { Err(e) }