summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type/type-mismatch-multiple.rs
blob: 55d6ceef1ded0d9ff151eb4defaa19ac238d19a3 (plain)
1
2
3
4
5
6
7
// Checking that the compiler reports multiple type errors at once

fn main() { let a: bool = 1; let b: i32 = true; }
//~^ ERROR mismatched types
//~| expected `bool`, found integer
//~| ERROR mismatched types
//~| expected `i32`, found `bool`