1// Header for PCH test cxx-alias-decl.cpp
2
3struct S {};
4template<typename U> struct T {
5  template<typename V> using A = T<V>;
6};
7
8using A = int;
9template<typename U> using B = S;
10template<typename U> using C = T<U>;
11template<typename U, typename V> using D = typename T<U>::template A<V>;
12