summaryrefslogtreecommitdiff
path: root/regress/usr.bin/pcc/ccom/switch002.c
blob: b0c9037f04f37207536b9c5e4efb1e45aae88a4a (plain)
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;
}