Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
variadic54.C
blob: 3fbeefdaf7cd5dcd6b91a4c1f9c715b1df167d09 [
file
] [
log
] [
blame
]
// { dg-do compile { target c++11 } }
template
<
typename
F
,
typename
...
BoundArgs
>
class
bound_functor
{
public
:
bound_functor
();
};
template
<
typename
F
,
typename
...
BoundArgs
>
bound_functor
<
F
,
BoundArgs
...>::
bound_functor
()
{
}