blob: f2bacde1185ebfc28cd5e4ff6d7c936f45b64a16 [file] [log] [blame]
// GROUPS passed operator-delete
// Check that using the delete operator with a null pointer
// is allowed (as called for by The Book, pg. 259)
extern "C" void printf (char *, ...);
struct base {
int member;
};
base* bp;
void test ()
{
delete bp;
}
int main ()
{
bp = (base *) 0;
test ();
printf ("PASS\n");
return 0;
}