msg_172.c revision 1.4
11.4Srillig/*	$NetBSD: msg_172.c,v 1.4 2022/06/16 16:58:36 rillig Exp $	*/
21.1Srillig# 3 "msg_172.c"
31.1Srillig
41.1Srillig// Test for message: too many struct/union initializers [172]
51.1Srillig
61.2Srilligstruct color {
71.2Srillig	unsigned int red: 8;
81.2Srillig	unsigned int green: 8;
91.2Srillig	unsigned int blue: 8;
101.2Srillig};
111.2Srillig
121.4Srillig/* expect+1: error: too many struct/union initializers [172] */
131.4Srilligstruct color white = { 255, 255, 255, 255 };
14