blob: b12ffc851b8412daa8cbc055a6cd479bfe9a6445 [file] [log] [blame]
Howard Hinnant3e519522010-05-11 19:42:16 +00001//===----------------------------------------------------------------------===//
2//
Howard Hinnant5b08a8a2010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnant3e519522010-05-11 19:42:16 +00004//
Howard Hinnant412dbeb2010-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 Hinnant3e519522010-05-11 19:42:16 +00007//
8//===----------------------------------------------------------------------===//
9
10// <array>
11
12// iterator begin();
13
14#include <array>
15#include <cassert>
16
Eric Fiselierb4e2e7a2015-10-01 07:05:38 +000017// std::array is explicitly allowed to be initialized with A a = { init-list };.
18// Disable the missing braces warning for this reason.
19#include "disable_missing_braces_warning.h"
Eric Fiselier2decfad2015-07-18 23:56:04 +000020
Howard Hinnant3e519522010-05-11 19:42:16 +000021int main()
22{
23 {
24 typedef double T;
25 typedef std::array<T, 3> C;
26 C c = {1, 2, 3.5};
Howard Hinnant27745452011-01-28 23:46:28 +000027 C::iterator i;
28 i = c.begin();
Howard Hinnant3e519522010-05-11 19:42:16 +000029 assert(*i == 1);
30 assert(&*i == c.data());
31 *i = 5.5;
32 assert(c[0] == 5.5);
33 }
Howard Hinnant3e519522010-05-11 19:42:16 +000034}