summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/variadic113.C
blob: 3f1bb2ad04a741d57912e1d63f0aca7d9389a910 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// PR c++/49251
// { dg-options "-std=c++0x -Wunused-parameter" }

struct A {};
template <int> int f(A);

template< int... Indices >
struct indices {};

template< class... Args >
void sink( Args&&... ) {}

template< class T, int... Indices >
void unpack_test( T && t, indices<Indices...> ) {
  sink( f<Indices>(t)... );
}

int main() {
  unpack_test( A(), indices<>() );
}