1 //===----------------------------------------------------------------------===//
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
7 //===----------------------------------------------------------------------===//
11 // Construct with initializer list
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"
25 typedef std::array
<T
, 3> C
;
27 assert(c
.size() == 3);
34 typedef std::array
<T
, 0> C
;
36 assert(c
.size() == 0);
41 typedef std::array
<T
, 3> C
;
43 assert(c
.size() == 3.0);
48 typedef std::array
<T
, 1> C
;
50 assert(c
.size() == 1);