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