repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
pr31445.C
blob
b4542818237991ab54c33f615b72d1b309aa2a66
1
// { dg-do compile { target c++11 } }
2
template <typename... T> struct A
3
{
4
void foo(T...);
5
A(T... t) { foo(t); } // { dg-error "18:parameter packs|t" }
6
};
7
8
A<int> a(0);