// PR c++/44629 // The proper mangling is unclear. template int cmp1(T a, T b); template struct A { }; template void f (A &); void g() { A a; f(a); }