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>>);
  };
};

Reply via email to