aboutsummaryrefslogtreecommitdiff
path: root/test/switch-long-long.c
blob: 65e022f627be88ba6f860479fef20d38803b8803 (plain)
1
2
3
4
5
6
7
int main(void) {
	switch (0x12300000000) {
	case 0: return 1;
	case 0x12300000000: return 0;
	}
	return 2;
}