OSDN Git Service

* gcc.c-torture/compile/20021120-1.c: New test.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.c-torture / compile / 921019-1.c
1 struct
2 {
3 int n:1,c:1;
4 }p;
5
6 f()
7 {
8 p.c=p.n=0;
9 }