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 // template <class T, size_t N>
12 // bool operator==(const array<T,N>& x, const array<T,N>& y); // constexpr in C++20
13 // template <class T, size_t N>
14 // bool operator!=(const array<T,N>& x, const array<T,N>& y); // removed in C++20
15 // template <class T, size_t N>
16 // bool operator<(const array<T,N>& x, const array<T,N>& y); // removed in C++20
17 // template <class T, size_t N>
18 // bool operator>(const array<T,N>& x, const array<T,N>& y); // removed in C++20
19 // template <class T, size_t N>
20 // bool operator<=(const array<T,N>& x, const array<T,N>& y); // removed in C++20
21 // template <class T, size_t N>
22 // bool operator>=(const array<T,N>& x, const array<T,N>& y); // removed in C++20
26 #include "test_macros.h"
31 #if TEST_STD_VER >= 14 && TEST_STD_VER <= 17
32 // expected-error@*:* 3 {{no matching function for call to object of type 'std::__less<void, void>'}}
35 int main(int, char**) {
37 typedef NoCompare
<0> T
;
38 typedef std::array
<T
, 3> C
;
40 // expected-error@*:* 2 {{invalid operands to binary expression}}
41 TEST_IGNORE_NODISCARD(c1
== c1
);
42 TEST_IGNORE_NODISCARD(c1
< c1
);
45 typedef NoCompare
<1> T
;
46 typedef std::array
<T
, 3> C
;
48 // expected-error@*:* 2 {{invalid operands to binary expression}}
49 TEST_IGNORE_NODISCARD(c1
!= c1
);
50 TEST_IGNORE_NODISCARD(c1
> c1
);
53 typedef NoCompare
<2> T
;
54 typedef std::array
<T
, 0> C
;
56 // expected-error@*:* 2 {{invalid operands to binary expression}}
57 TEST_IGNORE_NODISCARD(c1
== c1
);
58 TEST_IGNORE_NODISCARD(c1
< c1
);