summaryrefslogtreecommitdiffstats
path: root/libcxx/test/std/containers/sequences/array/indexing.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/test/std/containers/sequences/array/indexing.pass.cpp')
-rw-r--r--libcxx/test/std/containers/sequences/array/indexing.pass.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/libcxx/test/std/containers/sequences/array/indexing.pass.cpp b/libcxx/test/std/containers/sequences/array/indexing.pass.cpp
index 7bc3360a6fd..0df672d8b01 100644
--- a/libcxx/test/std/containers/sequences/array/indexing.pass.cpp
+++ b/libcxx/test/std/containers/sequences/array/indexing.pass.cpp
@@ -64,11 +64,11 @@ int main(int, char**)
typedef double T;
typedef std::array<T, 0> C;
C c = {};
+ C const& cc = c;
LIBCPP_ASSERT_NOEXCEPT(c[0]);
+ LIBCPP_ASSERT_NOEXCEPT(cc[0]);
ASSERT_SAME_TYPE(C::reference, decltype(c[0]));
- C const& cc = c;
- static_assert((std::is_same<decltype(c[0]), T &>::value), "");
- static_assert((std::is_same<decltype(cc[0]), const T &>::value), "");
+ ASSERT_SAME_TYPE(C::const_reference, decltype(cc[0]));
if (c.size() > (0)) { // always false
C::reference r1 = c[0];
C::const_reference r2 = cc[0];
@@ -80,11 +80,11 @@ int main(int, char**)
typedef double T;
typedef std::array<const T, 0> C;
C c = {{}};
+ C const& cc = c;
LIBCPP_ASSERT_NOEXCEPT(c[0]);
+ LIBCPP_ASSERT_NOEXCEPT(cc[0]);
ASSERT_SAME_TYPE(C::reference, decltype(c[0]));
- C const& cc = c;
- static_assert((std::is_same<decltype(c[0]), const T &>::value), "");
- static_assert((std::is_same<decltype(cc[0]), const T &>::value), "");
+ ASSERT_SAME_TYPE(C::const_reference, decltype(cc[0]));
if (c.size() > (0)) { // always false
C::reference r1 = c[0];
C::const_reference r2 = cc[0];
OpenPOWER on IntegriCloud