Home
last modified time | relevance | path

Searched refs:NotExplicitlyEnabled (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.cpp52 struct NotExplicitlyEnabled { struct
53 NotExplicitlyEnabled() = default;
54 NotExplicitlyEnabled(NotExplicitlyEnabled&&) = default;
55 NotExplicitlyEnabled& operator=(NotExplicitlyEnabled&&) = default;
56 friend int* begin(NotExplicitlyEnabled&);
57 friend int* begin(NotExplicitlyEnabled const&);
58 friend int* end(NotExplicitlyEnabled&);
59 friend int* end(NotExplicitlyEnabled const&);
61 static_assert(std::ranges::range<NotExplicitlyEnabled>);
62 static_assert(std::movable<NotExplicitlyEnabled>);
[all …]