1 /* $NetBSD: msg_044.c,v 1.3 2021/08/26 19:23:25 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