1//===----------------------------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9// <array>
10
11// template <size_t I, class T, size_t N> const T&& get(const array<T, N>&& a);
12
13// UNSUPPORTED: c++03
14
15#include <array>
16#include <memory>
17#include <type_traits>
18#include <utility>
19#include <cassert>
20
21#include "test_macros.h"
22
23int main(int, char**) {
24 {
25 typedef std::unique_ptr<double> T;
26 typedef std::array<T, 1> C;
27 const C c = {std::unique_ptr<double>(new double(3.5))};
28 static_assert(std::is_same<const T&&, decltype(std::get<0>(std::move(c)))>::value, "");
29 static_assert(noexcept(std::get<0>(std::move(c))), "");
30 const T&& t = std::get<0>(std::move(c));
31 assert(*t == 3.5);
32 }
33
34#if TEST_STD_VER >= 14
35 {
36 typedef double T;
37 typedef std::array<T, 3> C;
38 constexpr const C c = {1, 2, 3.5};
39 static_assert(std::get<0>(std::move(c)) == 1, "");
40 static_assert(std::get<1>(std::move(c)) == 2, "");
41 static_assert(std::get<2>(std::move(c)) == 3.5, "");
42 }
43#endif
44
45 return 0;
46}
47

source code of libcxx/test/std/containers/sequences/array/array.tuple/get_const_rv.pass.cpp