1 2 3 4 5 6 7 8 9 10 11
/* Should not compile. */ int main(int argc, char **argv) { int *p = 0; switch (p) { } return 0; }