// Copyright (C) 2020-2022 Free Software Foundation, Inc. // // This file is part of the GNU ISO C++ Library. This library is free // software; you can redistribute it and/or modify it under the // terms of the GNU General Public License as published by the // Free Software Foundation; either version 3, or (at your option) // any later version. // This library is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License along // with this library; see the file COPYING3. If not see // . // { dg-options "-std=gnu++2a" } // { dg-do compile { target c++2a } } #include template struct Dereferenceable { T operator*(); }; template concept has_iter_reference = requires { typename std::iter_reference_t; }; template concept is_iter_reference_for = has_iter_reference && std::same_as>; static_assert(!has_iter_reference>); static_assert(is_iter_reference_for>); static_assert(is_iter_reference_for>); static_assert(is_iter_reference_for>); static_assert(is_iter_reference_for); static_assert(is_iter_reference_for); template concept has_iter_rvalue_reference = requires { typename std::iter_rvalue_reference_t; }; template concept is_iter_rvalue_reference_for = has_iter_rvalue_reference && std::same_as>; static_assert(!has_iter_rvalue_reference>); static_assert(is_iter_rvalue_reference_for>); static_assert(is_iter_rvalue_reference_for>); static_assert(is_iter_rvalue_reference_for>); static_assert(is_iter_rvalue_reference_for); static_assert(is_iter_rvalue_reference_for); // These functions should be found by ADL. std::move is not applied to result. long iter_move(Dereferenceable); long& iter_move(Dereferenceable); static_assert(is_iter_rvalue_reference_for>); static_assert(is_iter_rvalue_reference_for>);