summaryrefslogtreecommitdiffstats
path: root/test/input/ReferenceType-to-Class-template.cxx
blob: 74ed2a3644efe4060adbe58936a23666d03be9d7 (plain)
1
2
3
4
5
6
7
template <typename T>
class A
{
};
void start(A<int>&, short);
void start(A<int>&, int);
void start(A<int>&, long);