921e5a0eb4
From-SVN: r14840
18 lines
151 B
C
18 lines
151 B
C
#define int unsigned
|
|
|
|
struct foo
|
|
{
|
|
int aa : 1;
|
|
int a : 9;
|
|
int c : 16;
|
|
int d : 6;
|
|
};
|
|
|
|
|
|
int
|
|
foo (a, b)
|
|
struct foo a;
|
|
{
|
|
return a.d == 0;
|
|
}
|