921e5a0eb4
From-SVN: r14840
16 lines
148 B
C
16 lines
148 B
C
struct foo
|
|
{
|
|
unsigned j : 16;
|
|
unsigned i : 16;
|
|
};
|
|
|
|
struct foo
|
|
foo (a, b)
|
|
struct foo a;
|
|
int b;
|
|
{
|
|
a.j = 123;
|
|
a.i = b;
|
|
return a;
|
|
}
|