blob: 01f300a99554a47ae3b9e5b864699628efb34222 [file] [log] [blame]
template <typename T>
void someFunc()
{
}
extern template void someFunc<int>();
void otherFunc()
{
someFunc<int>();
}