Home | History | Annotate | Line # | Download | only in lint1
msg_037.c revision 1.3
      1 /*	$NetBSD: msg_037.c,v 1.3 2021/01/31 11:12:07 rillig Exp $	*/
      2 # 3 "msg_037.c"
      3 
      4 // Test for message: zero size bit-field [37]
      5 
      6 struct example {
      7 	unsigned int zero: 0;	/* expect: 37 */
      8 	unsigned int ok: 3;
      9 };
     10