rust/tests/mir-opt/inline/unwrap_unchecked.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
417 B
Rust
Raw Normal View History

// skip-filecheck
2023-02-24 15:33:22 -06:00
#![crate_type = "lib"]
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
2023-02-24 15:33:22 -06:00
// 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()
}