OSDN Git Service

Backported from mainline
[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 }