summaryrefslogtreecommitdiffstats
path: root/tests/ui/intrinsics/intrinsic-unreachable.rs
blob: 73dd71d482ff53cff4a687550cf24ba7e0bef04d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// run-pass
#![feature(core_intrinsics)]

use std::intrinsics;

// See also tests/run-make/intrinsic-unreachable.

unsafe fn f(x: usize) -> usize {
    match x {
        17 => 23,
        _ => intrinsics::unreachable(),
    }
}

fn main() {
    assert_eq!(unsafe { f(17) }, 23);
}