summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unused_rounding.rs
blob: 8d007bc4a1dc8f3333ab72ac2f230fa56808b011 (plain)
1
2
3
4
5
6
7
8
9
// run-rustfix
#![warn(clippy::unused_rounding)]

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