xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_044.c (revision 2718af68c3efc72c9769069b5c7f9ed36f6b9def)
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