libstdc++: Fix find_last_set(simd_mask) to ignore padding bits
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.martin / crash1.C
blob5a81d7ed806d8a3d80a7e2ccc9497eada6814132
1 // { dg-do assemble  }
2 int i = 4;
3 struct S{
4   char c[i];      // { dg-error "" } size not constant
5   int h;
6   int foo(){
7     return h;
8   }
9 };
11 int main()
13   S x;
14   int i = x.foo();