i386, testsuite: Fix non-Unicode character
[official-gcc.git] / gcc / testsuite / g++.dg / ext / stmtexpr19.C
blob5355c15df9a8fa9b057dbf6037535f2b241a8b44
1 // PR c++/81073
2 // { dg-options "" }
3 // { dg-do link { target c++11 } }
5 struct test { const int *addr; };
7 const test* setup()
9   static constexpr test atest =
10     {
11       ({ static const int inner = 123; &inner; })
12     };
14   return &atest;
17 int main(){}