libstdc++: [_Hashtable] Fix some implementation inconsistencies
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / alias-decl-71.C
blob6a61f93a0b0a9d83bf9219aa508954b7b05007a8
1 // PR c++/100592
2 // { dg-do compile { target c++11 } }
4 template<bool>
5 struct meta {
6   template<class> using if_c = int&;
7 };
9 template<bool B>
10 typename meta<B>::template if_c<void> const f();
12 using type = decltype(f<true>());
13 using type = int&;