simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist112.C
blobcd97098eec53f43ea8a977aa01c7e73c0fd62a16
1 // PR c++/80864
2 // { dg-do compile { target c++11 } }
4 struct S {int a[2]; };
5 struct A { S s[1]; };
7 template <typename, int N>
8 struct R { static constexpr auto h = A{S{N}}; };
10 template <typename, int N>
11 struct R2 { static constexpr auto h = A{S{{N, N}}}; };
13 A foo = R<int, 10>::h;
14 A foo2 = R2<int, 10>::h;