URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.5.1/] [gcc/] [testsuite/] [gcc.c-torture/] [compile/] [20010610-1.c] - Rev 297
Compare with Previous | Blame | View Log
/* 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; }