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; }