Quoting Martin:
authorRobert Lipe <robertl@gcc.gnu.org>
Tue, 2 Jun 1998 19:47:20 +0000 (19:47 +0000)
committerRobert Lipe <robertl@gcc.gnu.org>
Tue, 2 Jun 1998 19:47:20 +0000 (19:47 +0000)
The semantics of this test case are implementation-defined, as per
[lib.support.types]/4. Therefore, I propose to delete it.

From-SVN: r20186

gcc/testsuite/g++.old-deja/g++.robertl/eb88.C [deleted file]

diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb88.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb88.C
deleted file mode 100644 (file)
index ba2a081..0000000
+++ /dev/null
@@ -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); ].