mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
18 lines
359 B
Rust
18 lines
359 B
Rust
// FIXME(f16_f128): add tests when math functions are available
|
|
|
|
#![warn(clippy::unused_rounding)]
|
|
|
|
fn main() {
|
|
let _ = 1f32;
|
|
let _ = 1.0f64;
|
|
let _ = 1.00f32;
|
|
let _ = 2e-54f64.floor();
|
|
|
|
// issue9866
|
|
let _ = 3.3_f32.round();
|
|
let _ = 3.3_f64.round();
|
|
let _ = 3.0_f32;
|
|
|
|
let _ = 3_3.0_0_f32;
|
|
let _ = 3_3.0_1_f64.round();
|
|
}
|