// Build don't link: template struct S {}; template <> struct S { void f(); void g(); }; void S::f() {} template <> void S::g() {} // ERROR - does not match any template declaration