//===----------------------------------------------------------------------===// // // 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 // test forward #include #include #include #include "test_macros.h" struct A { }; A source() TEST_NOEXCEPT {return A();} const A csource() TEST_NOEXCEPT {return A();} #if TEST_STD_VER > 11 constexpr bool test_constexpr_forward() { int x = 42; const int cx = 101; return std::forward(x) == 42 && std::forward(x) == 42 && std::forward(x) == 42 && std::forward(x) == 42 && std::forward(x) == 42 && std::forward(x) == 42 && std::forward(cx) == 101 && std::forward(cx) == 101; } #endif int main(int, char**) { A a; const A ca = A(); ((void)a); // Prevent unused warning ((void)ca); // Prevent unused warning static_assert(std::is_same(a)), A&>::value, ""); static_assert(std::is_same(a)), A&&>::value, ""); static_assert(std::is_same(source())), A&&>::value, ""); ASSERT_NOEXCEPT(std::forward(a)); ASSERT_NOEXCEPT(std::forward(a)); ASSERT_NOEXCEPT(std::forward(source())); static_assert(std::is_same(a)), const A&>::value, ""); static_assert(std::is_same(a)), const A&&>::value, ""); static_assert(std::is_same(source())), const A&&>::value, ""); ASSERT_NOEXCEPT(std::forward(a)); ASSERT_NOEXCEPT(std::forward(a)); ASSERT_NOEXCEPT(std::forward(source())); static_assert(std::is_same(ca)), const A&>::value, ""); static_assert(std::is_same(ca)), const A&&>::value, ""); static_assert(std::is_same(csource())), const A&&>::value, ""); ASSERT_NOEXCEPT(std::forward(ca)); ASSERT_NOEXCEPT(std::forward(ca)); ASSERT_NOEXCEPT(std::forward(csource())); #if TEST_STD_VER > 11 { constexpr int i2 = std::forward(42); static_assert(std::forward(42) == 42, ""); static_assert(std::forward(i2) == 42, ""); static_assert(test_constexpr_forward(), ""); } #endif #if TEST_STD_VER == 11 && defined(_LIBCPP_VERSION) // Test that std::forward is constexpr in C++11. This is an extension // provided by both libc++ and libstdc++. { constexpr int i2 = std::forward(42); static_assert(std::forward(42) == 42, "" ); static_assert(std::forward(i2) == 42, ""); } #endif return 0; }