mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
17 lines
282 B
Rust
17 lines
282 B
Rust
//@ 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);
|
|
}
|