1 // PR c++/90996
2 // { dg-do compile { target c++14 } }
3 
4 struct S
5 {
6   int &&a = 2;
7   int b[1] {a};
8 };
9 
10 S c[2][2] {{{5}}};
11 
12 struct T
13 {
14   S c[2][2] {{{7}}};
15 };
16 
17 T d {};
18