2020-04-12 05:01:07 -05:00
|
|
|
#![feature(intrinsics)]
|
|
|
|
|
|
|
|
// Directly call intrinsic to avoid debug assertions in libstd
|
|
|
|
extern "rust-intrinsic" {
|
|
|
|
fn float_to_int_unchecked<Float: Copy, Int: Copy>(value: Float) -> Int;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2022-06-21 13:38:02 -05:00
|
|
|
unsafe {
|
2022-06-21 13:40:02 -05:00
|
|
|
float_to_int_unchecked::<f32, i32>(f32::NEG_INFINITY); //~ ERROR: cannot be represented in target type `i32`
|
|
|
|
}
|
2020-04-12 05:01:07 -05:00
|
|
|
}
|