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