OSDN Git Service

Add NIOS2 support. Code from SourceyG++.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / other / bitfield4.C
1 // Contributed by Dodji Seketeli <dodji@redhat.com>
2 // Origin PR c++/42217
3 // { dg-do compile }
4
5 struct A
6 {
7  int : 0;
8 };
9 A a = A();
10