about summary refs log tree commit diff
path: root/src/test/ui/integral-variable-unification-error.rs
blob: 5200b4a829db236f4298288cabf0f03bb13ea250 (plain)
1
2
3
4
5
6
fn main() {
    let mut x = 2;
    x = 5.0;
    //~^ ERROR mismatched types
    //~| expected integer, found floating-point number
}