aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/inline3.C
blob: 00d57eb3ea18c7ea09994c008d095eb63895a11a (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
// Testcase for order of destruction.
// Special g++ Options: -O2

extern "C" int printf( char const*, ... );
int c;
int r;

struct B {
  B();
  B( B const& );
  ~B();
};

struct A {
  A();
  A( A const& );
  ~A();
  operator B ();
};

inline A::operator B () { printf( "operator B ()\n"); return B(); }

A f();
void g( B const& );

int
main()
{
  g( f() );
  return r;
}

B::B() { printf( "B::B()\n" ); if (++c != 2) r = 1; }
B::B( B const& ) { printf( "B::B( B const& )\n" ); r = 1; }
B::~B() { printf( "B::~B()\n" ); if (--c != 1) r = 1; }

A::A() { printf( "A::A()\n" ); if (++c != 1) r = 1; }
A::A( A const& ) { printf( "A::A( A const& )\n" ); r = 1; }
A::~A() { printf( "A::~A()\n" ); if (--c != 0) r = 1; }

A f() { printf( "f()\n"); return A(); }
void g( B const& ) { printf( "g()\n"); }