template function error

template <class T>
void Test(T r_t) {}

int main() {
template void Test<int>(int);
return 0;
}

why the above code shows error ??
Call the function with Test<int>(10); or similar.
Topic archived. No new replies allowed.