xref: /netbsd-src/tests/usr.bin/xlint/lint1/msg_172.c (revision 82d56013d7b633d116a93943de88e08335357a7c)
1 /*	$NetBSD: msg_172.c,v 1.3 2021/01/31 11:12:07 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 struct color white = { 255, 255, 255, 255 };	/* expect: 172 */
13