This is an unofficial snapshot of the ISO/IEC JTC1 SC22 WG21 Core Issues List revision 115e. See http://www.open-std.org/jtc1/sc22/wg21/ for the official list.
2024-11-11
There is implementation divergence for this example:
struct A { typedef int type; }; template <typename T> using ALIAS = A; template <typename T> void foo() { ALIAS<T>::type t; // Is typename required here? } int main() { foo<A>(); }
See also issues 1558, 1979, and 2037.