Update a deque test with more assertions. NFC
authorMarshall Clow <mclow.lists@gmail.com>
Fri, 15 Mar 2019 15:00:41 +0000 (15:00 +0000)
committerMarshall Clow <mclow.lists@gmail.com>
Fri, 15 Mar 2019 15:00:41 +0000 (15:00 +0000)
llvm-svn: 356266

libcxx/test/std/containers/sequences/array/indexing.pass.cpp

index 7bc3360..0df672d 100644 (file)
@@ -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];