mirror of
https://github.com/rust-lang/rust-clippy
synced 2025-02-25 11:57:25 +00:00
17 lines
436 B
Rust
17 lines
436 B
Rust
#![warn(clippy::floating_point_improvements)]
|
|
|
|
fn main() {
|
|
let x = 2f32;
|
|
let _ = x.exp() - 1.0;
|
|
let _ = x.exp() - 1.0 + 2.0;
|
|
// Cases where the lint shouldn't be applied
|
|
let _ = x.exp() - 2.0;
|
|
let _ = x.exp() - 1.0 * 2.0;
|
|
|
|
let x = 2f64;
|
|
let _ = x.exp() - 1.0;
|
|
let _ = x.exp() - 1.0 + 2.0;
|
|
// Cases where the lint shouldn't be applied
|
|
let _ = x.exp() - 2.0;
|
|
let _ = x.exp() - 1.0 * 2.0;
|
|
}
|