1// { dg-do compile }
2// Origin: Wolfgang Bangerth <wolfgang.bangerth@iwr.uni-heidelberg.de>
3
4// PR c++/2862
5// Default function argument and template instantiation.
6
7template <int dim> void f (int=0) {}
8template void f<1> ();		// { dg-error "not match" }
9