summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/variadic3.C
blob: 42ba8ab47eafb004ef384fe7c90c4981ced0c827 (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-options "-std=gnu++0x" }
template<typename... Args>
class tuple {};

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