We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f4967af commit a00b3ecCopy full SHA for a00b3ec
src/float.rs
@@ -2466,6 +2466,8 @@ mod tests {
2466
test_integer_decode(sign_f * f32::MAX, (0xffffff, 104, sign));
2467
test_integer_decode(sign_f * f32::INFINITY, (0x800000, 105, sign));
2468
}
2469
+ // FIXME: Unclear if we should be able to recover NaN inputs
2470
+ // check(f32::NAN, (0xc00000, 105, 1));
2471
2472
2473
#[test]
@@ -2488,6 +2490,8 @@ mod tests {
2488
2490
test_integer_decode(sign_f * f64::MAX, (0x1fffffffffffff, 971, sign));
2489
2491
test_integer_decode(sign_f * f64::INFINITY, (0x10000000000000, 972, sign));
2492
2493
2494
+ // check(f64::NAN, (0x18000000000000, 972, 1));
2495
2496
2497
0 commit comments