8fa8cd733633e379476678ece8910705462f6c28
[gcc.git] / gcc / testsuite / gcc.c-torture / unsorted / ext.c
1 struct foo
2 {
3 unsigned b31 : 1;
4 unsigned b30 : 1;
5 unsigned b29 : 1;
6 unsigned b28 : 1;
7 unsigned rest : 28;
8 };
9 foo(a)
10 struct foo a;
11 {
12 return a.b30;
13 }