2024-06-18 12:34:49 -05:00
|
|
|
// FIXME(f16_f128): add tests when exp is available
|
|
|
|
|
2020-02-23 21:06:55 -08:00
|
|
|
#![warn(clippy::imprecise_flops)]
|
2022-10-06 09:44:38 +02:00
|
|
|
#![allow(clippy::unnecessary_cast)]
|
2019-12-20 17:57:47 -08:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let x = 2f32;
|
|
|
|
let _ = x.exp() - 1.0;
|
|
|
|
let _ = x.exp() - 1.0 + 2.0;
|
2022-08-31 09:24:45 -04:00
|
|
|
let _ = (x as f32).exp() - 1.0 + 2.0;
|
2019-12-20 17:57:47 -08: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;
|
|
|
|
}
|