1struct tree_common
2{
3  unsigned int code : 9;
4  unsigned int code2 : 7;
5};
6
7static int
8duplicate_decls (x)
9     register struct tree_common x;
10{
11  return x.code2;
12}
13