blob: ee8e2431bbb5e6604c60babd0ffa2e174a4843f0 [file] [log] [blame]
/* Origin: Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
Boolean types were not accepted as array sizes nor as switch
quantities. */
#include <stdbool.h>
int
main(void)
{
bool arr[(bool)1];
switch (arr[0])
{
default:;
}
return 0;
}