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