xref: /illumos-gate/usr/src/tools/smatch/src/validation/kill-switch.c (revision 5b6ecd7fe9733cbbf05a3badf91c9d6db3f8a544)
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