pt.c (register_specialization): Push DECL_SOURCE_LOCATION to the clones.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic31.C
blobeacf568978a8bc766ce104412e8c905aff105f4d
1 // { dg-options "-std=gnu++0x" }
2 template<typename... T>
3 void eat(T...) { }
5 void f()
7   eat();
8   eat(1);
9   eat(1, 2);
10   eat(17, 3.14159, "Hello, World!");