summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/friend27.C
blob: 6317da577d028e5bc3a8624c9f44ca0dd2b40e8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// PR c++/15265

enum Relation {equalOp};
template<typename B>
class A {
public:
    static
    bool    Relop(const A&, const A&, Relation);

    friend
    bool    operator==(const A& a1, const A& a2) {
      return Relop(a1, a2, equalOp);
    }
  B* b;
};

int main() {
  A<int> a; a == a;
  return 0;
}