xref: /illumos-gate/usr/src/tools/smatch/src/validation/static-forward-decl.c (revision 3dae5456c609a0bdfeffc8d1c0dc436db6ab3436)
1 static int f(void);
2 
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