Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
variadic131.C
blob: 3006f87ed23502060d11cae0b0440aff22d0ce78 [
file
] [
log
] [
blame
]
// PR c++/38543
// { dg-do compile { target c++11 } }
template
<
typename
...
T
>
void
foo
(
T
...
args
);
template
<>
void
foo
(
){}
template
<>
void
foo
(
int
,
double
){}
int
main
()
{
foo
(
0
,
0.0
);
return
55
;
}