Home
last modified time | relevance | path

Searched defs:NotNoexceptCopy (Results 1 – 1 of 1) sorted by relevance

/llvm-project/libcxx/test/std/ranges/range.factories/range.iota.view/iterator/
H A Dstar.pass.cpp24 struct NotNoexceptCopy { struct
28 constexpr explicit NotNoexceptCopy(int value = 0) : value_(value) {} in NotNoexceptCopy() argument
29 constexpr NotNoexceptCopy(const NotNoexceptCopy& other) noexcept(false) : value_(other.value_) {} in NotNoexceptCopy() argument
47 constexpr NotNoexceptCopy& operator++() { ++value_; return *this; } in operator ++() argument
59 static_assert(noexcept(*iter) == !std::same_as<T, NotNoexceptCopy>); in testType() argument