msg_180.c revision 1.3
1/* $NetBSD: msg_180.c,v 1.3 2021/01/31 11:12:07 rillig Exp $ */
2# 3 "msg_180.c"
3
4// Test for message: bit-field initializer does not fit [180]
5
6struct example {
7 unsigned int a: 5;
8 unsigned int b: 5;
9} example_var = {
10 32, /* expect: 180 */
11 31
12};
13