Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
variadic123.C
blob: f0ab9fc22a19c43cf19b69d852785c45079a49d7 [
file
] [
log
] [
blame
]
// PR c++/52824
// { dg-do compile { target c++11 } }
template
<
typename
G
,
typename
H
>
struct
foo
{};
template
<
typename
...
G
>
struct
bar
:
foo
<
G
...>
{};
int
main
()
{
bar
<
int
,
float
>
f
;
}