summary refs log tree commit diff
path: root/tests/codegen/binary-heap-peek-mut-pop-no-panic.rs
blob: e3bc9a4761cfd8939a1358bab9a8a89d7eeb44ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ compile-flags: -O
//@ ignore-std-debug-assertions
#![crate_type = "lib"]

use std::collections::binary_heap::PeekMut;

// CHECK-LABEL: @peek_mut_pop
#[no_mangle]
pub fn peek_mut_pop(peek_mut: PeekMut<u32>) -> u32 {
    // CHECK-NOT: panic
    // CHECK-NOT: unwrap_failed
    PeekMut::pop(peek_mut)
}