blob: 26bc716b08a6fd592aaad63e9c59a55e395a2ac3 [file] [log] [blame]
Richard Smith3e4c6c42011-05-05 21:57:07 +00001// 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>;