repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
variadic186.C
blob
4a25a1a96bf8a46a767fda9ec1c905d555aa0a69
1
// PR c++/111592
2
// { dg-do compile { target c++11 } }
3
4
struct ignore { ignore(...) {} };
5
6
template<class... Args>
7
void InternalCompilerError(Args... args)
8
{ ignore{ ignore(args) ... }; }
9
10
int main()
11
{ InternalCompilerError(0, 0); }