aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/variadic3.C
blob: c4a5b55cc59b3cc97164b133836c9d64c8e2a7b9 (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-do compile { target c++11 } }
template<typename... Args>
class tuple {};

void f()
{
  tuple<> x;
  tuple<int> y;
  tuple<int, float> z;
}