pt.c (register_specialization): Push DECL_SOURCE_LOCATION to the clones.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic3.C
blob42ba8ab47eafb004ef384fe7c90c4981ced0c827
1 // { dg-options "-std=gnu++0x" }
2 template<typename... Args>
3 class tuple {};
5 void f()
7   tuple<> x;
8   tuple<int> y;
9   tuple<int, float> z;