cake
cake copied to clipboard
missing warning comparing null with int
int main() {
int i = 1;
bool b = true;
if (i == b) {
}
}