blob: 09fd98cec2ca87807599269fa33e2b4d885c6ae5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// <memory>
// UNSUPPORTED: c++03, c++11, c++14
// shared_ptr
// element_type& operator[](ptrdiff_t i) const;
#include "test_macros.h"
#include <memory>
#include <cassert>
struct Foo {
void call() {}
};
int main(int, char**) {
// Check that we get a static assertion when we try to use the bracket
// operator on shared_ptr<T> when T is not an array type.
const std::shared_ptr<Foo[]> p1;
(void)p1->call(); // expected-error@*:* {{std::shared_ptr<T>::operator-> is only valid when T is not an array type.}}
const std::shared_ptr<Foo[4]> p2;
(void)p2->call(); // expected-error@*:* {{std::shared_ptr<T>::operator-> is only valid when T is not an array type.}}
return 0;
}
|