summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/unnecessary_dot_for_floating_point_literal.rs
blob: c1a944562683a802277f24947f2275d884283c27 (plain)
1
2
3
4
5
6
fn main() {
    let _: f64 = 0..10; //~ ERROR mismatched types
    let _: f64 = 1..; //~ ERROR mismatched types
    let _: f64 = ..10; //~ ERROR mismatched types
    let _: f64 = std::ops::Range { start: 0, end: 1 }; //~ ERROR mismatched types
}