Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
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
;
}