aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/pr51619.C
blob: 9a731880440dd44b67ffbee3abd29d3709e9c3c9 (plain)
1
2
3
4
5
6
// PR c++/51619
// { dg-do compile { target c++11 } }

struct A { virtual ~A(); };
struct B { A a[1][1]; } b;
struct C { A a[3][3]; } c;