summaryrefslogtreecommitdiffstats
path: root/test/input/TypeAliasTemplate.cxx
blob: ec54f800732219fb560259e94f5686e2d23aa733 (plain)
1
2
3
4
template <typename T> struct A { typedef T type; };
namespace start {
  template <typename T> using type = typename A<T>::type;
}