c++, coroutines: Simplify separation of the user function body and ramp.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp1y / nsdmi-aggr10.C
blob1dc396d9ca59622730af036d26ddf928c60c622a
1 // PR c++/71638
2 // { dg-do compile { target c++14 } }
4 struct {
5   int &&a;
6   int b{a};
7 } c[] { { 2 } };