Make !x be an untyped boolean

This commit is contained in:
gingerBill
2023-04-27 11:26:15 +01:00
parent 7cda64e52d
commit b0f0a02d3c
+2
View File
@@ -1688,6 +1688,8 @@ gb_internal bool check_unary_op(CheckerContext *c, Operand *o, Token op) {
if (is_type_integer(type)) {
error_line("\tSuggestion: Did you mean to use the bitwise not operator '~'?\n");
}
} else {
o->type = t_untyped_bool;
}
break;