//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // UNSUPPORTED: c++03, c++11, c++14, c++17 // constexpr W operator[](difference_type n) const // requires advanceable; #include #include #include "test_macros.h" #include "../types.h" template constexpr void testType() { { std::ranges::iota_view io(T(0)); auto iter = io.begin(); for (int i = 0; i < 100; ++i) assert(iter[i] == T(i)); } { std::ranges::iota_view io(T(10)); auto iter = io.begin(); for (int i = 0; i < 100; ++i) assert(iter[i] == T(i + 10)); } { const std::ranges::iota_view io(T(0)); auto iter = io.begin(); for (int i = 0; i < 100; ++i) assert(iter[i] == T(i)); } { const std::ranges::iota_view io(T(10)); auto iter = io.begin(); for (int i = 0; i < 100; ++i) assert(iter[i] == T(i + 10)); } } constexpr bool test() { testType(); testType(); testType(); testType(); testType(); testType(); testType(); return true; } int main(int, char**) { test(); static_assert(test()); return 0; }