msg_221.c revision 1.4
1/*	$NetBSD: msg_221.c,v 1.4 2021/02/22 15:09:50 rillig Exp $	*/
2# 3 "msg_221.c"
3
4// Test for message: initialization of unsigned with negative constant [221]
5
6struct example {
7	unsigned int a: 5;
8	unsigned int b: 5;
9} example_var = {
10    -1,				/* expect: 221 */
11    31
12};
13