blob: 816c3009d2ece1228eef37b26b805aca07691b1c [file] [log] [blame]
// Build don't link:
// Special g++ Options: -pedantic-errors
// GROUPS passed operator-delete
/* ARM $5.3.4 */
void f(char *p, char *q[], const char *r, const char *s[])
{
delete 0; /* illegal: non-pointer */// ERROR - .*expected pointer.*
delete (char*)0; /* no effect */
delete p;
delete[] q;
delete[4] q; /* ANSI forbids size arg */// ERROR - anachronistic .*
delete r; /* no longer illegal: const */
delete[] s;
delete[4] s; /* ANSI forbids size arg */// ERROR - anachronistic.*
}