rust/tests/ui/numbers-arithmetic/float2.rs
Esteban Küber 3815ed63ed Remove some unnecessary parens in assert! conditions
While working on #122661, some of these started triggering our "unnecessary parens" lints due to a change in the `assert!` desugaring. A cursory search identified a few more. Some of these have been carried from before 1.0, were a bulk rename from the previous name of `assert!` left them in that state. I went and removed as many of these unnecessary parens as possible in order to have fewer annoyances in the future if we make the lint smarter.
2025-02-06 22:28:44 +00:00

27 lines
468 B
Rust

//@ run-pass
pub fn main() {
let a = 1.5e6f64;
let b = 1.5E6f64;
let c = 1e6f64;
let d = 1E6f64;
let e = 3.0f32;
let f = 5.9f64;
let g = 1e6f32;
let h = 1.0e7f64;
let i = 1.0E7f64;
let j = 3.1e+9f64;
let k = 3.2e-10f64;
assert_eq!(a, b);
assert!(c < b);
assert_eq!(c, d);
assert!(e < g);
assert!(f < h);
assert_eq!(g, 1000000.0f32);
assert_eq!(h, i);
assert!(j > k);
assert!(k < a);
}