summaryrefslogtreecommitdiffstats
path: root/util/romcc/tests/fail_test4.c
blob: a2d3bece666d97ad641fd235fceb6c684be40bfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
static void main(void)
{
	static const int foo = 2;
	switch(foo) {
	case 1:
		break;
	case 2:
		break;
	case 1:
		break;
	default:
		break;
	}
}
OpenPOWER on IntegriCloud