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