8sa1-gcc/gcc/testsuite/g++.old-deja/g++.other/cleanup1.C
Jason Merrill 4495766362 fix implicit int
From-SVN: r23760
1998-11-22 18:23:45 -05:00

21 lines
220 B
C

// Bug: fold is too eager about pushing down CLEANUP_POINT_EXPR.
int d;
struct A {
A() { }
~A() { d = 1; }
};
int f (const A& a)
{
return 1;
}
int main ()
{
if (f (A()) && d == 0)
return 0;
return 1;
}