xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_093.c (revision 7d62b00eb9ad855ffcd7da46b41e23feb5476fac)
1 /*	$NetBSD: msg_093.c,v 1.5 2022/06/21 21:18:30 rillig Exp $	*/
2 # 3 "msg_093.c"
3 
4 // Test for message: dubious static function '%s' at block level [93]
5 
6 void
7 example(void)
8 {
9 	/* expect+1: warning: dubious static function 'nested' at block level [93] */
10 	static void nested(void);
11 
12 	nested();
13 }
14