blob: 5200b4a829db236f4298288cabf0f03bb13ea250 [file] [log] [blame]
fn main() {
let mut x = 2;
x = 5.0;
//~^ ERROR mismatched types
//~| expected integer, found floating-point number
}