xref: /minix3/tests/usr.bin/xlint/lint1/d_ellipsis_in_switch.c (revision 11be35a165022172ed3cea20f2b5df0307540b0e)

x(void)1*11be35a1SLionel Sambuc int x(void)
2*11be35a1SLionel Sambuc {
3*11be35a1SLionel Sambuc 	int i = 33;
4*11be35a1SLionel Sambuc 	switch (i) {
5*11be35a1SLionel Sambuc 	case 1 ... 40:
6*11be35a1SLionel Sambuc 		break;
7*11be35a1SLionel Sambuc 	default:
8*11be35a1SLionel Sambuc 		break;
9*11be35a1SLionel Sambuc 	}
10*11be35a1SLionel Sambuc 	return 0;
11*11be35a1SLionel Sambuc }
12