re PR c++/67184 (Missed optimization with C++11 final specifier)
[official-gcc.git] / gcc / testsuite / g++.dg / other / bitfield4.C
blobd140f82cb63a65b7eba0d5b90e1614efa18b3329
1 // Contributed by Dodji Seketeli <dodji@redhat.com>
2 // Origin PR c++/42217
3 // { dg-do compile }
5 struct A
7  int : 0;
8 };
9 A a = A();