]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/g++.dg/cpp0x/defaulted49.C
PR c++/92590 - wrong handling of inherited default ctor.
[gcc.git] / gcc / testsuite / g++.dg / cpp0x / defaulted49.C
1 // PR c++/60980
2 // { dg-do compile { target c++11 } }
3
4 struct x0
5 {
6 x0 () = default;
7 };
8 struct x1
9 {
10 x0 x2[2];
11 void x3 ()
12 {
13 x1 ();
14 }
15 };
This page took 0.039303 seconds and 5 git commands to generate.