pt.c (register_specialization): Push DECL_SOURCE_LOCATION to the clones.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / temp_default2.C
blobf7f22284a6266efbf5648dfecdcfd086b9e4da16
1 // { dg-options "-std=c++0x" }
3 template <class T, class U = double> 
4 void f(T t = 0, U u = 0); 
6 void g() 
7
8   f(1, 'c'); // f<int,char>(1,'c') 
9   f(1); // f<int,double>(1,0) 
10   f(); // { dg-error "no matching function" }
11   f<int>(); // f<int,double>(0,0) 
12   f<int,char>(); // f<int,char>(0,0) 
13