Sign in
cmake
/
cmake
/
76f08a107b344daff524974868ab30353bd9b255
/
.
/
Tests
/
CompileFeatures
/
cxx_extern_templates.cpp
blob: 01f300a99554a47ae3b9e5b864699628efb34222 [
file
] [
log
] [
blame
]
template
<
typename
T
>
void
someFunc
()
{
}
extern
template
void
someFunc
<int>
();
void
otherFunc
()
{
someFunc
<int>
();
}