summaryrefslogtreecommitdiffstats
path: root/test/input/Class-partial-template-member-Typedef.cxx
blob: ab71f5cc927c6909a3e8136888e20c2905d73fdd (plain)
1
2
3
4
5
6
7
8
9
10
11
template <typename T>
class start;
template <typename T>
class start<T&>
{
  typedef T Int;

public:
  T method(Int);
};
template class start<int&>;