xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_044.c (revision 7d62b00eb9ad855ffcd7da46b41e23feb5476fac)
1 /*	$NetBSD: msg_044.c,v 1.5 2022/06/20 21:13:36 rillig Exp $	*/
2 # 3 "msg_044.c"
3 
4 // Test for message: declaration of '%s %s' introduces new type in ANSI C [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 of 'struct tag' introduces new type in ANSI C [44] */
13 	/* expect+1: warning: struct 'tag' never defined [233] */
14 	struct tag;
15 }
16