msg_093.c revision 1.6
1/*	$NetBSD: msg_093.c,v 1.6 2023/07/07 19:45:22 rillig Exp $	*/
2# 3 "msg_093.c"
3
4// Test for message: dubious static function '%s' at block level [93]
5
6/* lint1-extra-flags: -X 351 */
7
8void
9example(void)
10{
11	/* expect+1: warning: dubious static function 'nested' at block level [93] */
12	static void nested(void);
13
14	nested();
15}
16