[Bug c++/92441] [10 regression] ICE: in strip_typedefs, at cp/tree.c:1681
jakub at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Wed Nov 13 20:32:00 GMT 2019
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=92441
Jakub Jelinek <jakub at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|WAITING |NEW
CC| |jakub at gcc dot gnu.org
--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Reduced testcase:
template <typename> void foo ();
template <typename, typename> struct A;
template <typename T, typename U = decltype(foo<T>)> using B = U;
template <typename T> using C = B<T>;
template <typename T> A<C<T>,int> a;
-fconcepts isn't needed.
Started with r277281.
Can't reproduce with current trunk though, only r278068, so most likely dup of
PR92206.
More information about the Gcc-bugs
mailing list