thradams/cake

missing warning comparing null with int

thradams opened this issue · 0 comments

int main() {
int i = 1;
bool b = true;
if (i == b) { 
}
}