aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.old-deja/g++.jason/byval.C
blob: e09c6ea66405f40f05b8b59c0705f2529d9d4682 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// { dg-do run  }
// Bug: a is destroyed in both foo() and main()

int count;

struct A {
  double a,b;
  A(int) { count++; }
  A(const A&) { count++; }
  ~A() { count--; }
};

void foo (A a)
{ }

int main()
{
  foo (1);
  return count;
}