summaryrefslogtreecommitdiff
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, 0 insertions, 31 deletions
diff --git a/test/std/containers/sequences/array/contiguous.pass.cpp b/test/std/containers/sequences/array/contiguous.pass.cpp
deleted file mode 100644
index 27933b0c5df84..0000000000000
--- a/test/std/containers/sequences/array/contiguous.pass.cpp
+++ /dev/null
@@ -1,31 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// 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());
- }
-}