/* Origin: Kaveh R. Ghazi Boolean types were not accepted as array sizes nor as switch quantities. */ #include int main(void) { bool arr[(bool)1]; switch (arr[0]) { default:; } return 0; }