simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-98295.C
blob930bd5a67dac4a570239edd54473e309d04618a6
1 // PR c++/98295
2 // { dg-do compile { target c++11 } }
4 struct A { constexpr A(); };
6 void f() {
7   A b[2][3];
8   [b] { };
11 constexpr A::A() {}