[Bug c++/96805] [10/11 Regression] ICE: Segmentation fault in instantiate_template / pop_nested_class()
marxin at gcc dot gnu.org
gcc-bugzilla@gcc.gnu.org
Thu Aug 27 10:33:48 GMT 2020
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96805
Martin Liška <marxin at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |marxin at gcc dot gnu.org
--- Comment #4 from Martin Liška <marxin at gcc dot gnu.org> ---
Reduced test-case:
$ cat qendian.ii
template <typename> bool is_nothrow_constructible_v;
template <typename> struct QArrayExceptionSafetyPrimitives {
struct {
template <typename> using iterator_move_value = decltype(0);
template <typename ForwardIt>
void
move()
noexcept(is_nothrow_constructible_v<iterator_move_value<ForwardIt>>);
};
};
More information about the Gcc-bugs
mailing list