2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / compile / 990829-1.c
blob2252821938eb7cdaf031aa1d3dcbd248e054060c
1 struct x
3 int a:16;
4 int b:16;
5 int c;
6 };
8 bar()
10 struct x y;
11 y.b = 1 < y.a;
12 foo(&y);