mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-05 05:11:15 -06:00
13 lines
122 B
C++
13 lines
122 B
C++
|
|
template<typename T>
|
|
void someFunc()
|
|
{
|
|
}
|
|
|
|
extern template void someFunc<int>();
|
|
|
|
void otherFunc()
|
|
{
|
|
someFunc<int>();
|
|
}
|