xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_172.c (revision 7d62b00eb9ad855ffcd7da46b41e23feb5476fac)
1 /*	$NetBSD: msg_172.c,v 1.4 2022/06/16 16:58:36 rillig Exp $	*/
2 # 3 "msg_172.c"
3 
4 // Test for message: too many struct/union initializers [172]
5 
6 struct color {
7 	unsigned int red: 8;
8 	unsigned int green: 8;
9 	unsigned int blue: 8;
10 };
11 
12 /* expect+1: error: too many struct/union initializers [172] */
13 struct color white = { 255, 255, 255, 255 };
14