summaryrefslogtreecommitdiffstats
path: root/tests/mir-opt/inline/unwrap_unchecked.rs
blob: f28aef7a808a84b0a7dc2d519e7c63e460bdd1a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
#![crate_type = "lib"]

// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
// ignore-debug: the debug assertions prevent the inlining we are testing for
// compile-flags: -Zmir-opt-level=2 -Zinline-mir

// EMIT_MIR unwrap_unchecked.unwrap_unchecked.Inline.diff
// EMIT_MIR unwrap_unchecked.unwrap_unchecked.PreCodegen.after.mir
pub unsafe fn unwrap_unchecked<T>(slf: Option<T>) -> T {
    slf.unwrap_unchecked()
}