#![feature(intrinsics)] // Directly call intrinsic to avoid debug assertions in libstd extern "rust-intrinsic" { fn float_to_int_unchecked(value: Float) -> Int; } fn main() { unsafe { float_to_int_unchecked::(-f32::NAN); } //~ ERROR: cannot be represented in target type `u32` }