1 // Core 1270 2 // { dg-options -std=c++11 } 3 4 struct A 5 { 6 int i[2]; 7 }; 8 f()9 A f() { return {1,2}; } 10