blob: 5d9980c9d2d4f37f3838b12ff12c0f0f4e34b1be [file] [log] [blame]
void
foo ()
{
union
{
int *p;
} u;
u.p = new int;
delete u.p;
}