1 // PR c++/71638
2 // { dg-do compile { target c++14 } }
3 
4 struct {
5   int &&a;
6   int b{a};
7 } c[] { { 2 } };
8