1 static int f(void);
2 
f(void)3 int f(void)
4 {
5 	return 0;
6 }
7 /*
8  * check-name: static forward declaration
9  *
10  * check-error-start
11 static-forward-decl.c:3:5: warning: symbol 'f' was not declared. Should it be static?
12  * check-error-end
13  */
14