summaryrefslogtreecommitdiffstats
path: root/test/input/Class-partial-template-member-Typedef.cxx
blob: f4bbf0ab3b71e1cd64e9951a1505c7837416a523 (plain)
1
2
3
4
5
6
7
template <typename T> class start;
template <typename T> class start<T&> {
  typedef T Int;
public:
  T method(Int);
};
template class start<int&>;