1 2 3 4 5 6 7 8 9 10 11 12
export fn entry(a: bool, b: bool) i32 { if (a && b) { return 1234; } return 5678; } // error // backend=stage2 // target=native // // :2:11: error: ambiguous use of '&&'; use 'and' for logical AND, or change whitespace to ' & &' for bitwise AND