Home | History | Annotate | Line # | Download | only in lint1
msg_181.c revision 1.3
      1 /*	$NetBSD: msg_181.c,v 1.3 2021/03/29 22:59:03 rillig Exp $	*/
      2 # 3 "msg_181.c"
      3 
      4 // Test for message: {}-enclosed initializer required [181]
      5 
      6 struct { int x; } missing_braces = 3;		/* expect: 181 */
      7 struct { int x; } including_braces = { 3 };
      8