blob: 1df85f7edc2bccfff9e9fb91ead201d30a7b973b [file] [log] [blame]
/* { dg-do compile } */
static inline void bar(){}
struct S
{
signed int i: 32;
};
int main()
{
struct S x = {32};
sizeof(x.i+0);
return 0;
}