Remove building with NOCRYPTO option
[minix.git] / tests / usr.bin / xlint / lint1 / d_ellipsis_in_switch.c
blobba4a338d29ae71bb5b9d7c22c3bd60a3ed7239f3
1 int x(void)
3 int i = 33;
4 switch (i) {
5 case 1 ... 40:
6 break;
7 default:
8 break;
10 return 0;