We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6e2912 commit 300a7f9Copy full SHA for 300a7f9
1 file changed
src/float.rs
@@ -2470,8 +2470,6 @@ mod tests {
2470
test_integer_decode(sign_f * f32::MAX, (0xffffff, 104, sign));
2471
test_integer_decode(sign_f * f32::INFINITY, (0x800000, 105, sign));
2472
}
2473
- // FIXME: Unclear if we should be able to recover NaN inputs
2474
- // test_integer_decode(f32::NAN, (0xc00000, 105, 1));
2475
2476
2477
#[test]
@@ -2494,8 +2492,6 @@ mod tests {
2494
2492
test_integer_decode(sign_f * f64::MAX, (0x1fffffffffffff, 971, sign));
2495
2493
test_integer_decode(sign_f * f64::INFINITY, (0x10000000000000, 972, sign));
2496
2497
2498
- // test_integer_decode(f64::NAN, (0x18000000000000, 972, 1));
2499
2500
2501
0 commit comments