Home | History | Annotate | Line # | Download | only in lint1
msg_013.c revision 1.4
      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