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
Daily bump.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
variadic123.C
blob
f0ab9fc22a19c43cf19b69d852785c45079a49d7
1
// PR c++/52824
2
// { dg-do compile { target c++11 } }
3
4
template<typename G, typename H>
5
struct foo
6
{};
7
8
template<typename... G>
9
struct bar : foo<G...>
10
{};
11
12
int main() {
13
bar<int, float> f;
14
}