blob: 99a7791628761266d2aeca45294c49960e390598 [file] [log] [blame]
// Build don't link:
template <class T, int i>
struct K { // ERROR - forward declaration
void f();
};
template <class T>
void
K<T, i>::f()
{ // ERROR - template parameters
}