하나의 인수가있는 템플릿 함수가 있습니다. 그 함수를 호출하지 않고 그 함수를 인스턴스화해야한다는 것은 명시 적으로 인스턴스화해야 함을 의미합니다.
이 기능이 있습니다.
template <class T> int function_name(T a) {}
이 함수를 다음과 같이 인스턴스화했습니다.
template int function_name<int>(int);
하지만 다음과 같은 오류가 있습니다.
error: expected primary-expression before 'template'
error: expected `;' before 'template'