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