Home | History | Annotate | Line # | Download | only in lint1
msg_175.c revision 1.3
      1 /*	$NetBSD: msg_175.c,v 1.3 2021/02/22 15:09:50 rillig Exp $	*/
      2 # 3 "msg_175.c"
      3 
      4 // Test for message: initialization of an incomplete type [175]
      5 
      6 struct incomplete;			/* expect: 233 */
      7 
      8 struct incomplete incomplete = {	/* expect: 175 */
      9 	"invalid"
     10 };					/* expect: 31 */
     11