//===----------------------------------------------------------------------===// // // 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 // optional #include #include static_assert(!std::indirectly_readable >); static_assert(!std::indirectly_writable, int>); static_assert(!std::weakly_incrementable >); static_assert(!std::indirectly_movable, std::optional>); static_assert(!std::indirectly_movable_storable, std::optional>); static_assert(!std::indirectly_copyable, std::optional>); static_assert(!std::indirectly_copyable_storable, std::optional>);