summaryrefslogtreecommitdiffstats
path: root/libcxx/test/std/experimental/utilities/propagate_const/propagate_const.nonmembers/propagate_const.relops/equal.pass.cpp
blob: a4a28b48a545bf9542b9a251d62d4c318e1691e5 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
//===----------------------------------------------------------------------===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//

// UNSUPPORTED: c++98, c++03, c++11

// <propagate_const>

// template <class T> constexpr bool operator==(const propagate_const<T>& x, const propagate_const<T>& y);
// template <class T> constexpr bool operator==(const T& x, const propagate_const<T>& y);
// template <class T> constexpr bool operator==(const propagate_const<T>& x, const T& y);

#include <experimental/propagate_const>
#include "propagate_const_helpers.h"
#include <cassert>

using std::experimental::propagate_const;
using std::nullptr_t;

constexpr bool operator==(const X &lhs, const X &rhs) {
  return lhs.i_ == rhs.i_;
}

constexpr bool operator==(const X &, const nullptr_t &) {
  return false;
}

constexpr bool operator==(const nullptr_t &, const X &) {
  return false;
}

int main() {
  constexpr X x1_1(1);
  constexpr X x2_1(1);
  constexpr X x3_2(2);

  static_assert(x1_1 == x1_1, "");
  static_assert(x1_1 == x2_1, "");
  static_assert(!(x1_1 == x3_2), "");

  typedef propagate_const<X> P;

  constexpr P p1_1(1);
  constexpr P p2_1(1);
  constexpr P p3_2(2);

  static_assert(p1_1 == p1_1, "");
  static_assert(p1_1 == p2_1, "");
  static_assert(!(p1_1 == p3_2), "");

  static_assert(x1_1 == p1_1, "");
  static_assert(!(x1_1 == p3_2), "");

  static_assert(p1_1 == x1_1, "");
  static_assert(!(p1_1 == x3_2), "");

  static_assert(!(p1_1==nullptr),"");
  static_assert(!(nullptr==p1_1),"");
}
OpenPOWER on IntegriCloud