xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_013.c (revision 7d62b00eb9ad855ffcd7da46b41e23feb5476fac)
1 /*	$NetBSD: msg_013.c,v 1.4 2022/06/11 12:24:00 rillig Exp $	*/
2 # 3 "msg_013.c"
3 
4 // Test for message: incomplete enum type '%s' [13]
5 
6 enum tag;
7 
8 /* XXX: why '<unnamed>'? */
9 /* expect+1: warning: incomplete enum type '<unnamed>' [13] */
10 void function(enum tag);
11 
12 enum tag {
13 	CONSTANT
14 };
15