blob: 2252821938eb7cdaf031aa1d3dcbd248e054060c [file] [log] [blame]
struct x
{
int a:16;
int b:16;
int c;
};
bar()
{
struct x y;
y.b = 1 < y.a;
foo(&y);
}