• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //===----------------------------------------------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is dual licensed under the MIT and the University of Illinois Open
6 // Source Licenses. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 // <array>
11 
12 // Construct with initizializer list
13 
14 #include <array>
15 #include <cassert>
16 
main()17 int main()
18 {
19     {
20         typedef double T;
21         typedef std::array<T, 3> C;
22         C c = {1, 2, 3.5};
23         assert(c.size() == 3);
24         assert(c[0] == 1);
25         assert(c[1] == 2);
26         assert(c[2] == 3.5);
27     }
28     {
29         typedef double T;
30         typedef std::array<T, 0> C;
31         C c = {};
32         assert(c.size() == 0);
33     }
34 }
35