Home | History | Annotate | Line # | Download | only in lint1
msg_013.c revision 1.3
      1 /*	$NetBSD: msg_013.c,v 1.3 2021/08/26 19:23:25 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