summaryrefslogtreecommitdiffstats
path: root/src/test/ui/did_you_mean/issue-53280-expected-float-found-integer-literal.rs
blob: 73f1856ca1d32ceab61ca4a49ea29dd63cd72991 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
fn main() {
    let sixteen: f32 = 16;
    //~^ ERROR mismatched types
    //~| HELP use a float literal
    let a_million_and_seventy: f64 = 1_000_070;
    //~^ ERROR mismatched types
    //~| HELP use a float literal
    let negative_nine: f32 = -9;
    //~^ ERROR mismatched types
    //~| HELP use a float literal


    // only base-10 literals get the suggestion

    let sixteen_again: f64 = 0x10;
    //~^ ERROR mismatched types
    let and_once_more: f32 = 0o20;
    //~^ ERROR mismatched types
}