blob: e09c6ea66405f40f05b8b59c0705f2529d9d4682 [file] [log] [blame]
// { 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;
}