aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp1z/regress1.C
blob: 2bebed02b1a9922c274916d26a7c6d6ec5d1927c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// PR c++/67114
// { dg-options -std=c++17 }

typedef unsigned uint32_t;
class A {
public:
  void operator==(A);
  operator uint32_t() const;
  operator int() const;
};
class BluetoothNamedValue {
  bool operator==(const BluetoothNamedValue &) const;
  A value() const;
};
auto BluetoothNamedValue::
operator==(const BluetoothNamedValue &) const -> bool {
  value() == value();
  return true;
}