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

public:
  T method(IntConst);
};
template class start<int const>;