1 //===----------------------------------------------------------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 // UNSUPPORTED: c++03, c++11, c++14
15 // element_type& operator[](ptrdiff_t i) const;
17 #include "test_macros.h"
22 int main(int, char**) {
24 const std::shared_ptr
<int[8]> p(new int[8]);
26 for (int i
= 0; i
< 8; ++i
)
28 for (int i
= 0; i
< 8; ++i
)
32 int* iptr
= new int[8];
33 for (int i
= 0; i
< 8; ++i
)
36 const std::shared_ptr
<int[8]> p(iptr
);
38 for (int i
= 0; i
< 8; ++i
)
42 const std::shared_ptr
<int[]> p(new int[8]);
44 for (int i
= 0; i
< 8; ++i
)
46 for (int i
= 0; i
< 8; ++i
)