re PR c++/67184 (Missed optimization with C++11 final specifier)
[official-gcc.git] / gcc / testsuite / g++.dg / other / big-struct.C
blobdcf230dd69cf05df92bdcee1437c15033f57d05d
1 // { dg-do compile { target i?86-*-* x86_64-*-* } }
2 // { dg-require-effective-target ilp32 }
4 struct A
6 };
8 struct B : public A
10   char b[0x20000000];
11 } e;