1 // { dg-do compile { target c++11 } }
3 // alias template of a partial specialization
5 template<class T, class U, class W> struct S0 {};
6 template<class T, class U> struct S0<T, U, char> {};
7 template<class T> using AS0 = S0<T, int, char>;
8 void foo(S0<bool, int, char>);
18 // alias template of an explicit specialization of a member template
25 template<class T> using AM = S1<int>::M<T>;
26 void bar(S1<int>::M<bool>);