OSDN Git Service

PR c++/36628
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / variadic3.C
1 // { dg-options "-std=gnu++0x" }
2 template<typename... Args>
3 class tuple {};
4
5 void f()
6 {
7   tuple<> x;
8   tuple<int> y;
9   tuple<int, float> z;
10 }