summaryrefslogtreecommitdiffstats
path: root/test/input/Function-template.cxx
blob: 4d16f5f5781944fb13b28628d8740b9dc49adfa4 (plain)
1
2
3
4
5
6
7
8
template <typename T>
T start(T)
{
  return T();
}
template <>
char start<char>(char);       // specialization
template int start<int>(int); // instantiation