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
13.10.3.6 [temp.deduct.type] paragraph 18 uses incorrect syntax. Instead of
template <template X<class T> > struct A { }; template <template X<class T> > void f(A<X>) { }it should be
template <template <class T> class X> struct A { }; template <template <class T> class X> void f(A<X>) { }
Proposed resolution (10/00): As suggested.
[Note: this section was numbered 14.8.2.4 in ISO/IEC 14882:2003.]