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