//===----------------------------------------------------------------------===// // // 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 // //===----------------------------------------------------------------------===// // // template struct pair // template // const typename tuple_element >::type&& // get(const pair&&); // UNSUPPORTED: c++03 && !stdlib=libc++ #include #include #include #include #include "test_macros.h" int main(int, char**) { { #if TEST_STD_VER >= 11 typedef std::pair, short> P; const P p(std::unique_ptr(new int(3)), static_cast(4)); static_assert(std::is_same&&, decltype(std::get<0>(std::move(p)))>::value, ""); static_assert(noexcept(std::get<0>(std::move(p))), ""); const std::unique_ptr&& ptr = std::get<0>(std::move(p)); assert(*ptr == 3); #endif } { int x = 42; int const y = 43; std::pair const p(x, y); static_assert(std::is_same(std::move(p)))>::value, ""); static_assert(std::is_same(std::move(p)))>::value, ""); #if TEST_STD_VER >= 11 static_assert(noexcept(std::get<0>(std::move(p))), ""); static_assert(noexcept(std::get<1>(std::move(p))), ""); #endif } { #if TEST_STD_VER >= 11 int x = 42; int const y = 43; std::pair const p(std::move(x), std::move(y)); static_assert(std::is_same(std::move(p)))>::value, ""); static_assert(noexcept(std::get<0>(std::move(p))), ""); static_assert(std::is_same(std::move(p)))>::value, ""); static_assert(noexcept(std::get<1>(std::move(p))), ""); #endif } #if TEST_STD_VER > 11 { typedef std::pair P; constexpr const P p1(3, static_cast(4)); static_assert(std::get<0>(std::move(p1)) == 3, ""); static_assert(std::get<1>(std::move(p1)) == 4, ""); } #endif return 0; }