aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.6/gcc/testsuite/g++.dg/cpp0x/variadic6.C
blob: 105550bb9031bfc5fc1a43ad1d82a12cdaa0337f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// { dg-options "-std=gnu++0x" }
template<typename ... Args>
struct tuple_base {};

template<typename ... Args>
struct tuple : public tuple_base<Args...>
{ 
};

tuple<> zero;
tuple<int> one;
tuple<float, int> two;