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 (); }