Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
6892002fcb60f241b0ebe59dfc4c38203cb135d3
/
.
/
Tests
/
CompileFeatures
/
cxx_extern_templates.cpp
blob: 01f300a99554a47ae3b9e5b864699628efb34222 [
file
]
template
<
typename
T
>
void
someFunc
()
{
}
extern
template
void
someFunc
<int>
();
void
otherFunc
()
{
someFunc
<int>
();
}