2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / unsorted / bitf.c
blob5b0aefc83d48047c1337cf1329ced4975aae8496
1 #define int unsigned
3 struct foo
5 int aa : 1;
6 int a : 9;
7 int c : 16;
8 int d : 6;
9 };
12 int
13 foo (a, b)
14 struct foo a;
16 return a.d == 0;