blob: b4d300deaed52d82604a898191563aa625fee06c [file] [log] [blame]
// Build don't link:
struct B { int foo (); };
int B::foo() { return 37; }
template <class A> struct X {
void f(int);
};
template <class A> void X<A>::f (int jj)
{}
X<int> x;
void xxx () { x.f (1); }