// Bug: instantiation of member templates breaks. // Build don't link: template struct A { static void f (); void g (); }; template void A::f () { } template void A::g () { } A a;