msg_093.c revision 1.3
1/* $NetBSD: msg_093.c,v 1.3 2021/01/31 11:12:07 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 static void nested(void); /* expect: 93 */
10
11 nested();
12}
13