blob: e626d82b3cb3fe48dfb76b04250da85369a474cb [file] [log] [blame]
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;
}