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
/
variadic175.C
blob
969f4b0b1521ba4d002f1d46e70cfac2274dfd73
1
// PR c++/84936
2
// { dg-do compile { target c++11 } }
3
4
struct A
5
{
6
template<typename... T> A(T... t)
7
: decltype(t)() {} // { dg-error "parameter pack" }
8
};
9
10
A a;