Home
last modified time | relevance | path

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

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