1 // PR c++/47041 2 // { dg-do compile { target c++11 } } 3 // { dg-options "-fno-elide-constructors" } 4 5 struct S 6 { 7 int i; 8 }; 9 10 S s = S (); 11