Searched defs:NotNoexceptCopy (Results 1 – 1 of 1) sorted by relevance
25 struct NotNoexceptCopy { struct29 constexpr explicit NotNoexceptCopy(int value = 0) : value_(value) {} in NotNoexceptCopy() function48 constexpr NotNoexceptCopy& operator++() { ++value_; return *this; } in operator ++() argument60 static_assert(noexcept(*iter) == !std::same_as<T, NotNoexceptCopy>); in testType() argument