<html><head><meta http-equiv="Content-Type" content="text/html; charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">Hello everyone, I hope this mailing list is the right place to ask about this. When I try to compile this particular code sample <a href="https://godbolt.org/g/J7cgbV" class="">https://godbolt.org/g/J7cgbV</a> I get an error, that A must have a copy assignment operator. However when reading the documentation at <a href="https://en.cppreference.com/w/cpp/container/vector/insert" class="">https://en.cppreference.com/w/cpp/container/vector/insert</a> I do not see any such requirements for this particular overload of insert. It does mention that T must be moveAssignable and MoveInsertable if Iterator is not ForwardIterator. Even if I define move assignment operator it still requires copy assignment.<div class=""><br class=""></div><div class="">I have tested it on Clang 4, Clang 6, GCC 8.1 and get the same error. MSVC 2017 compiles when move assignment is present. It would be great if someone could explain this behavior.</div></body></html>