blob: 586fb61a02e6e18318e9a408f487a6aaa8e11480 [file] [log] [blame]
// PRMS Id: 4827
// Build don't link:
class A;
template <class T> int f (const T&, const A *);
int g (const int& a)
{
return f (a, (A *)0); // gets bogus error - failed unification
}