simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / new3.C
blobc388acf552e7165c0560b1b040a064ad0029ef19
1 // PR c++/85847
2 // { dg-do compile { target c++11 } }
4 template <class>
5 int f(int b) { return b; }
7 template <class>
8 void g()
10   auto a = new int[f<int>(2), 2];