blob: dd2787bf40f40dd041faefa734389f6819c5cbce (
plain)
1
2
3
4
5
6
7
|
#![feature(core_intrinsics)]
fn main() {
unsafe {
let _x: f32 = core::intrinsics::fsub_fast(f32::NAN, f32::NAN); //~ ERROR: `fsub_fast` intrinsic called with non-finite value as both parameters
}
}
|