1 struct A
2 {
3   int b:3;
4 } d, e;
5 
6 int c;
7 
f()8 void f ()
9 {
10   char g = d.b * e.b;
11   c = g;
12 }
13