PR c++/85553
[official-gcc.git] / gcc / testsuite / g++.dg / ext / stmtexpr20.C
blob33355e3b990d1f1b80243805332e366546adbab4
1 // PR c++/83921
2 // { dg-options "" }
3 // { dg-do compile { target c++11 } }
5 struct test { const int *addr; };
7 const test* setup()
9   static constexpr test atest =
10     { ({ int inner = 1; (const int*)(0); }) };
12   return &atest;