Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/test/std/ranges/range.req/range.view/
H A Dview.compile.pass.cpp22 struct NotMoveable : std::ranges::view_base { struct
23 NotMoveable() = default;
24 NotMoveable(NotMoveable&&) = delete;
25 NotMoveable& operator=(NotMoveable&&) = delete;
26 friend int* begin(NotMoveable&);
27 friend int* begin(NotMoveable const&);
28 friend int* end(NotMoveable&);
29 friend int* end(NotMoveable const&);
31 static_assert(std::ranges::range<NotMoveable>);
32 static_assert(!std::movable<NotMoveable>);
[all …]