func(int i)1 static void func (int i)
2 {
3 	i;
4 	int j = i;
5 }
6 /*
7  * check-name: declaration after statement (C89)
8  * check-command: sparse -std=c89 $file
9  * check-error-start
10 declaration-after-statement-c89.c:4:9: warning: mixing declarations and code
11  * check-error-end
12  */
13