aboutsummaryrefslogtreecommitdiff
path: root/test/std/containers/sequences/array/contiguous.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/std/containers/sequences/array/contiguous.pass.cpp')
-rw-r--r--test/std/containers/sequences/array/contiguous.pass.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/std/containers/sequences/array/contiguous.pass.cpp b/test/std/containers/sequences/array/contiguous.pass.cpp
new file mode 100644
index 0000000000000..27933b0c5df84
--- /dev/null
+++ b/test/std/containers/sequences/array/contiguous.pass.cpp
@@ -0,0 +1,31 @@
+//===----------------------------------------------------------------------===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is dual licensed under the MIT and the University of Illinois Open
+// Source Licenses. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+// <array>
+
+// An array is a contiguous container
+
+#include <array>
+#include <cassert>
+
+template <class C>
+void test_contiguous ( const C &c )
+{
+ for ( size_t i = 0; i < c.size(); ++i )
+ assert ( *(c.begin() + i) == *(std::addressof(*c.begin()) + i));
+}
+
+int main()
+{
+ {
+ typedef double T;
+ typedef std::array<T, 3> C;
+ test_contiguous (C());
+ }
+}