2023-04-23 11:03:09 +00:00
|
|
|
//@run-rustfix
|
2020-02-24 05:06:55 +00:00
|
|
|
#![warn(clippy::imprecise_flops)]
|
2022-10-06 07:44:38 +00:00
|
|
|
#![allow(clippy::unnecessary_cast)]
|
2019-12-21 01:57:47 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x = 2f32;
|
|
|
|
let _ = x.exp() - 1.0;
|
|
|
|
let _ = x.exp() - 1.0 + 2.0;
|
2022-08-31 13:24:45 +00:00
|
|
|
let _ = (x as f32).exp() - 1.0 + 2.0;
|
2019-12-21 01:57:47 +00:00
|
|
|
// 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;
|
|
|
|
}
|