libstdc++: [_Hashtable] Fix some implementation inconsistencies
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / alias-decl-75.C
blob1a73a99856e964a08441aeb95c028242ee43fb90
1 // PR c++/112633
2 // { dg-do compile { target c++11 } }
4 struct A { using type = void; };
6 template<class>
7 using ty1 = A;
9 template<class T>
10 using ty2 = typename ty1<T>::type;
12 template<class T>
13 ty2<T> f();