msg_180.c revision 1.2
1/* $NetBSD: msg_180.c,v 1.2 2021/01/07 18:37:41 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,
11 31
12};
13