aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/p5469.C
blob: 3f5029dc3ce1a0d370b4269905cbb186f77e73ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// prms-id: 5469

int count;

class A {
  A();
  A(const A&);
public:
  A(int) { ++count; }
  ~A() { --count; }
  int operator== (const A& r) { return 0; }
};

main() {
  {
    A a (1);
    if (a == 2 && a == 1)
      ;
  }
  return count;
}