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
433 B
Rust
Raw Normal View History

2023-02-24 15:33:22 -06:00
#![crate_type = "lib"]
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
//@ compile-flags: -Zmir-opt-level=2 -Zinline-mir
2023-02-24 15:33:22 -06:00
// 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 {
2023-10-21 00:22:32 -05:00
// CHECK-LABEL: fn unwrap_unchecked(
// CHECK: (inlined #[track_caller] Option::<T>::unwrap_unchecked)
2023-02-24 15:33:22 -06:00
slf.unwrap_unchecked()
}