summaryrefslogtreecommitdiffstats
path: root/test/input/Class-template.cxx
blob: 7bfa22fb3041e30be19863cdef5b2dc5861700e6 (plain)
1
2
3
4
5
template <typename T> class start {};
template <typename T> struct start<T&> {}; // partial specialization
template <> class start<char>; // specialization
template class start<int>; // instantiation
template class start<int&>; // instantiation of partial specialization