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];
x3x111   void x3 ()
12   {
13     x1 ();
14   }
15 };
16