Sign in
fuchsia
/
third_party
/
cmake
/
20ed6f697e997f597b1e60d16edf711792e94965
/
.
/
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>
();
}