summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.other/dtor11.C
blob: e20fa034f7d6efa96325ecce69282a614a3c514b (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
// { dg-do run  }
// Origin: Mark Mitchell <mark@codesourcery.com>

extern "C" void abort ();

int j;

struct S {
  S () { ++j; }
  S (const S&) { ++j; }
  ~S () {
    if (--j < 0)
      abort ();
   }
};

struct T {
  void g (S) {
  }
};

struct U {
  int i;
  S s;
};

U u;

U f () { return u; }

int main ()
{
  T t;
  t.g (f ().s);
}