Home
last modified time | relevance | path

Searched refs:NotSizedSentinel (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/libcxx/test/std/ranges/range.utility/view.interface/
H A Dview.interface.pass.cpp42 struct NotSizedSentinel { struct
47 explicit NotSizedSentinel() = default; argument
48 explicit NotSizedSentinel(int*);
50 NotSizedSentinel& operator++();
51 NotSizedSentinel operator++(int);
52 bool operator==(NotSizedSentinel const&) const;
54 static_assert(std::forward_iterator<NotSizedSentinel>);
234 static_assert(!SizeInvocable<NotSizedSentinel>); in testSize()