Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / abi / bitfield11.C
blobe78ea121d6159087ef35cff8acc67121e93cea81
1 // { dg-do run } 
2 // { dg-options "-w -fabi-version=0" }
4 struct S {
5   char c : 1024;
6 };
8 S s;
10 int main () {
11   s.c = 1;
12   if (*(char *)&s != 1)
13     return 1;