simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / vt-59978.C
blobb7cdb19353a26b35c267908d3a4e1d7d661844f9
1 // PR c++/59978
2 // { dg-do compile { target c++11 } }
4 static void testFunc(int i1, int i2) {
5     (void)i1;
6     (void)i2;
9 template <int... Ints> void wrapper() {
10     testFunc(Ints...);
13 int main()
15     wrapper<1, 2>();