Home | History | Annotate | Line # | Download | only in lint1
msg_044.c revision 1.4
      1 /*	$NetBSD: msg_044.c,v 1.4 2022/06/11 11:52:13 rillig Exp $	*/
      2 # 3 "msg_044.c"
      3 
      4 // Test for message: declaration introduces new type in ANSI C: %s %s [44]
      5 
      6 /* expect+1: warning: struct 'tag' never defined [233] */
      7 struct tag;
      8 
      9 void declaration(struct tag *);
     10 
     11 void definition(void) {
     12 	/* expect+2: warning: declaration introduces new type in ANSI C: struct tag [44] */
     13 	/* expect+1: warning: struct 'tag' never defined [233] */
     14 	struct tag;
     15 }
     16