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