https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91706
Patrick Palka <ppalka at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |ppalka at gcc dot gnu.org
--- Comment #5 from Patrick Palka <ppalka at gcc dot gnu.org> ---
Slightly more reduced testcase:
template <bool> struct A;
struct C {
template <typename> static int c ();
};
template <class T> struct D : C {
using c = decltype (c<T>);
using E = A<c::g>;
};
D<int> g;
