blob: 89b893afd821cd8c6cf275e32ac2f00166edcaec [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001//===----------------------------------------------------------------------===//
2//
Howard Hinnantf5256e12010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00005// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00007//
8//===----------------------------------------------------------------------===//
9
10// <array>
11
12// template <class T, size_t N> constexpr size_type array<T,N>::size();
13
14#include <array>
15#include <cassert>
16
Dan Albert1d4a1ed2016-05-25 22:36:09 -070017#include "../suppress_array_warnings.h"
Eric Fiselier02bb4bd2015-07-18 23:56:04 +000018
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000019int main()
20{
21 {
22 typedef double T;
23 typedef std::array<T, 3> C;
24 C c = {1, 2, 3.5};
25 assert(c.size() == 3);
Marshall Clow8fc4f5a2013-07-17 18:25:36 +000026 assert(c.max_size() == 3);
27 assert(!c.empty());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000028 }
29 {
30 typedef double T;
31 typedef std::array<T, 0> C;
32 C c = {};
33 assert(c.size() == 0);
Marshall Clow8fc4f5a2013-07-17 18:25:36 +000034 assert(c.max_size() == 0);
35 assert(c.empty());
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000036 }
Howard Hinnant08bce172012-07-20 19:20:49 +000037#ifndef _LIBCPP_HAS_NO_CONSTEXPR
38 {
39 typedef double T;
40 typedef std::array<T, 3> C;
41 constexpr C c = {1, 2, 3.5};
42 static_assert(c.size() == 3, "");
Marshall Clow8fc4f5a2013-07-17 18:25:36 +000043 static_assert(c.max_size() == 3, "");
44 static_assert(!c.empty(), "");
Howard Hinnant08bce172012-07-20 19:20:49 +000045 }
46 {
47 typedef double T;
48 typedef std::array<T, 0> C;
49 constexpr C c = {};
50 static_assert(c.size() == 0, "");
Marshall Clow8fc4f5a2013-07-17 18:25:36 +000051 static_assert(c.max_size() == 0, "");
52 static_assert(c.empty(), "");
Howard Hinnant08bce172012-07-20 19:20:49 +000053 }
54#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000055}