blob: b6e6858e0a05a92b06edc818ccc028f15f38c7c0 [file] [log] [blame]
// Build don't link:
template <class T>
struct S {};
template <>
struct S<int>
{
void f();
void g();
};
void S<int>::f() {}
template <>
void S<int>::g() {} // ERROR - does not match any template declaration