2018-08-30 14:18:55 +02:00
|
|
|
//@ run-pass
|
2015-06-10 13:33:52 -07:00
|
|
|
#![feature(core_intrinsics)]
|
2015-03-05 18:33:58 -08:00
|
|
|
|
2014-09-04 16:09:18 -07:00
|
|
|
use std::intrinsics;
|
|
|
|
|
2023-01-05 09:45:44 +01:00
|
|
|
// See also tests/run-make/intrinsic-unreachable.
|
2014-09-04 16:09:18 -07:00
|
|
|
|
2015-03-25 17:06:52 -07:00
|
|
|
unsafe fn f(x: usize) -> usize {
|
2014-09-04 16:09:18 -07:00
|
|
|
match x {
|
|
|
|
17 => 23,
|
|
|
|
_ => intrinsics::unreachable(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
assert_eq!(unsafe { f(17) }, 23);
|
|
|
|
}
|