aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.jason/temporary8.C
blob: c24256e6b62d9cc9f9eb8e3b83dfadfc186838c4 (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
// { dg-do run  }
// Test for proper handling of temporaries in ?: exprs.

extern "C" int printf (const char *, ...);
int c = 0, d = 0;

class A {
public:
  A() { ++c; }
  A(const A&) { ++c; }
  ~A() { ++d; }
};

A f (const A& a)
{
  return (c ? A() : A());
}

int main()
{
  {
    f (c ? A() : A());
  }
  printf ("%d %d\n", c, d);
  return c != d || c != 2;
}