Quoting Martin:

The semantics of this test case are implementation-defined, as per
[lib.support.types]/4. Therefore, I propose to delete it.

From-SVN: r20186
This commit is contained in:
Robert Lipe 1998-06-02 19:47:20 +00:00
parent 57f1de49eb
commit 3a0243dbd8
1 changed files with 0 additions and 7 deletions

View File

@ -1,7 +0,0 @@
#include <stddef.h>
int main()
{
throw(NULL);
}
// The code works as expected, when NULL is cast to void* explicitly [
// throw((void*)NULL); ].