]> git.lizzy.rs Git - rust.git/blob - src/test/ui/type/type-mismatch-multiple.rs
b8f04ca8d4a33f07bcb08210d0370f60caac93c3
[rust.git] / src / test / ui / type / type-mismatch-multiple.rs
1 // Checking that the compiler reports multiple type errors at once
2
3 fn main() { let a: bool = 1; let b: i32 = true; }
4 //~^ ERROR mismatched types
5 //~| expected type `bool`
6 //~| found type `{integer}`
7 //~| expected bool, found integer
8 //~| ERROR mismatched types
9 //~| expected i32, found bool