xref: /illumos-gate/usr/src/tools/smatch/src/validation/declaration-after-statement-c99.c (revision 856f710c9dc323b39da5935194d7928ffb99b67f)
1 static void func (int i)
2 {
3 	i;
4 	int j = i;
5 }
6 /*
7  * check-name: declaration after statement (C99)
8  * check-command: sparse -std=c99 $file
9  */
10