blob: 812fe95db4e57dcf045135cb6e144ca38058277c [file] [log] [blame]
// issue #500
fn main() {
let x = true;
let y = 1;
let z = x + y;
//~^ ERROR cannot add `{integer}` to `bool`
}