msg_093.c revision 1.4
1/*	$NetBSD: msg_093.c,v 1.4 2022/04/03 09:34:45 rillig Exp $	*/
2# 3 "msg_093.c"
3
4// Test for message: dubious static function at block level: %s [93]
5
6void
7example(void)
8{
9	/* expect+1: warning: dubious static function at block level: nested [93] */
10	static void nested(void);
11
12	nested();
13}
14