cake
cake copied to clipboard
missing warning - bool like used in switch
int main()
{
int i = 0;
switch(!i) {
case 1:
break;
default:
break;
}
}