summaryrefslogtreecommitdiff
path: root/tests/parser/switch-statement.vala
blob: 28f37f3de9475ae0931be099ec25c4621cbdaccb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
void case_with_list () {
	int i = 1;
	switch (i) {
	case 0, 1, 2:
		break;
	default:
		assert_not_reached ();
	}
}

void main () {
	case_with_list ();
}