simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic186.C
blob4a25a1a96bf8a46a767fda9ec1c905d555aa0a69
1 // PR c++/111592
2 // { dg-do compile { target c++11 } }
4 struct ignore { ignore(...) {} };
6 template<class... Args>
7 void InternalCompilerError(Args... args)
8 { ignore{ ignore(args) ... }; }
10 int main()
11 { InternalCompilerError(0, 0); }