xref: /illumos-gate/usr/src/tools/smatch/src/validation/kill-switch.c (revision 8d55b80625b903a8ec6c560f6a38b5c16d1f5cfc)
1 extern int i;
2 
3 static void foo(void)
4 {
5 	switch (i) {
6 	case 0:
7 		;
8 	}
9 }
10 
11 /*
12  * check-name: kill-switch
13  * check-command: test-linearize $file
14  *
15  * check-output-ignore
16  * check-output-excludes: load\\.
17  */
18