We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 868b13b commit 4f710d4Copy full SHA for 4f710d4
tests/ui/concrete-playback/f32/main.rs
@@ -18,7 +18,7 @@ pub fn harness() {
18
!(f32_1 == f32::NEG_INFINITY
19
&& f32_2 == f32::MIN
20
&& f32_3 == -101f32
21
- && f32_4 == 0f32
+ && (f32_4 == 0f32 && f32_4.signum() < 0.0)
22
&& f32_5 == f32::MIN_POSITIVE
23
&& f32_6 == 101f32
24
&& f32_7 == f32::MAX
tests/ui/concrete-playback/f64/main.rs
!(f64_1 == f64::NEG_INFINITY
&& f64_2 == f64::MIN
&& f64_3 == -101f64
- && f64_4 == 0f64
+ && (f64_4 == 0f64 && f64_4.signum() < 0.0)
&& f64_5 == f64::MIN_POSITIVE
&& f64_6 == 101f64
&& f64_7 == f64::MAX
0 commit comments