pt.c (register_specialization): Push DECL_SOURCE_LOCATION to the clones.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist3.C
blob412deb51129a8c8326b76198ad14891672c4c5de
1 // { dg-options "-std=c++0x" }
3 #include <initializer_list>
5 template <class T> void f(std::initializer_list<T>);
7 void g()
9   f({1,2,3});