summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unused_rounding.rs
blob: a0267d8144aabb45c462280e45bb29f46ed81d03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// run-rustfix
#![warn(clippy::unused_rounding)]

fn main() {
    let _ = 1f32.ceil();
    let _ = 1.0f64.floor();
    let _ = 1.00f32.round();
    let _ = 2e-54f64.floor();

    // issue9866
    let _ = 3.3_f32.round();
    let _ = 3.3_f64.round();
    let _ = 3.0_f32.round();

    let _ = 3_3.0_0_f32.round();
    let _ = 3_3.0_1_f64.round();
}