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