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
/
vt-59978.C
blob
b7cdb19353a26b35c267908d3a4e1d7d661844f9
1
// PR c++/59978
2
// { dg-do compile { target c++11 } }
3
4
static void testFunc(int i1, int i2) {
5
(void)i1;
6
(void)i2;
7
}
8
9
template <int... Ints> void wrapper() {
10
testFunc(Ints...);
11
}
12
13
int main()
14
{
15
wrapper<1, 2>();
16
}