8sa1-gcc/gcc/testsuite/gcc.c-torture/unsorted/b3.c
Jeff Law 921e5a0eb4 Initial revision
From-SVN: r14840
1997-08-19 01:34:40 -06:00

13 lines
165 B
C

struct tree_common
{
unsigned int code : 9;
unsigned int code2 : 7;
};
static int
duplicate_decls (x)
register struct tree_common x;
{
return x.code2;
}