blob: f6125cdeaf631b10681250344cddccbd1efa1619 [file] [log] [blame]
// Build don't link:
// Origin: Mark Mitchell <mark@codesourcery.com>
template <class T>
struct S
{
void f (const T&);
void f (T&);
};
class C
{
};
typedef int (C::*cp)();
template struct S<cp>;