blob: 55d6ceef1ded0d9ff151eb4defaa19ac238d19a3 [file] [log] [blame]
// 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`