[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git] / libcxx / test / std / containers / sequences / array / array.cons / initializer_list.pass.cpp
blobcdc04b18d24f1e7284a70696cfda0873a5c66dfa
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 //===----------------------------------------------------------------------===//
9 // <array>
11 // Construct with initializer list
13 #include <array>
14 #include <cassert>
16 // std::array is explicitly allowed to be initialized with A a = { init-list };.
17 // Disable the missing braces warning for this reason.
18 #include "test_macros.h"
19 #include "disable_missing_braces_warning.h"
21 int main(int, char**)
24 typedef double T;
25 typedef std::array<T, 3> C;
26 C c = {1, 2, 3.5};
27 assert(c.size() == 3);
28 assert(c[0] == 1);
29 assert(c[1] == 2);
30 assert(c[2] == 3.5);
33 typedef double T;
34 typedef std::array<T, 0> C;
35 C c = {};
36 assert(c.size() == 0);
40 typedef double T;
41 typedef std::array<T, 3> C;
42 C c = {1};
43 assert(c.size() == 3.0);
44 assert(c[0] == 1);
47 typedef int T;
48 typedef std::array<T, 1> C;
49 C c = {};
50 assert(c.size() == 1);
53 return 0;