Home | History | Annotate | Line # | Download | only in lint1
      1 /*	$NetBSD: msg_327.c,v 1.8 2023/07/07 06:03:31 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 192,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