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 {
|
|
|
|
float_to_int_unchecked::<f32, u32>(-1.000000001f32);
|
|
|
|
} //~ ERROR: cannot be represented in target type `u32`
|
2020-04-12 05:01:07 -05:00
|
|
|
}
|