aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/variadic113.C
blob: 8f02fed04e07d4f4e7e71147cdaac7f549096eee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// PR c++/49251
// { dg-do compile { target c++11 } }
// { dg-options "-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<>() );
}