summaryrefslogtreecommitdiffstats
path: root/tools/clang-tidy/test/modernize-use-using.cpp
blob: 0e7b73222c314be79e870268652466350b07427f (plain)
1
2
3
4
5
template <typename T>
class Test {
  typedef typename T::iterator Iter;
};
typedef int Type;