xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_327.c (revision afab4e300d3a9fb07dd8c80daf53d0feb3345706)
1 /*	$NetBSD: msg_327.c,v 1.7 2023/03/28 14:44:35 rillig Exp $	*/
2 # 3 "msg_327.c"
3 
4 /* Test for message: declarations after statements is a C99 feature [327] */
5 
6 /* lint1-flags: -w -X 351 */
7 
8 void statement(void);
9 
10 /*ARGSUSED*/
11 void
12 example(void)
13 {
14 	statement();
15 	/* expect+1: warning: declarations after statements is a C99 feature [327] */
16 	int declaration_1;
17 	statement();
18 	/* expect+1: warning: declarations after statements is a C99 feature [327] */
19 	int declaration_2;
20 	statement();
21 	/* expect+1: warning: declarations after statements is a C99 feature [327] */
22 	int declaration_3;
23 }
24