//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template struct pair // template // const typename tuple_element >::type&& // get(const pair&&); // UNSUPPORTED: c++98, c++03 #include #include #include #include #include "test_macros.h" int main() { { 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); } { int x = 42; int const y = 43; std::pair const p(x, 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))), ""); } { 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))), ""); } #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 }