From 3a0243dbd8b45fa919cb39f6a05bf305b65c6d31 Mon Sep 17 00:00:00 2001 From: Robert Lipe Date: Tue, 2 Jun 1998 19:47:20 +0000 Subject: [PATCH] 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 --- gcc/testsuite/g++.old-deja/g++.robertl/eb88.C | 7 ------- 1 file changed, 7 deletions(-) delete mode 100644 gcc/testsuite/g++.old-deja/g++.robertl/eb88.C 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 index ba2a0812d6a..00000000000 --- a/gcc/testsuite/g++.old-deja/g++.robertl/eb88.C +++ /dev/null @@ -1,7 +0,0 @@ -#include -int main() -{ - throw(NULL); -} -// The code works as expected, when NULL is cast to void* explicitly [ -// throw((void*)NULL); ].