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