simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist-array20.C
blob048c5b45652c39d03ab8b36e60e892ebde5a754b
1 // PR c++/112658
2 // PR c++/94264
3 // { dg-do compile { target c++11 } }
5 void f(int*);
7 int main() {
8   using array = int[];
9   f(array{42});
10   f((int*)array{42});