blob: 87d79a8ab7bfde77c117601512e958ec46f2d684 [file] [log] [blame]
// PRMS Id: 4826
// Build don't link:
class A;
template <class T> void f(const T&, const T&);
void g (const A& a, A& b) {
f (a, b); // gets bogus error - failed unification
}