From: Robert Lipe Date: Tue, 2 Jun 1998 19:47:20 +0000 (+0000) Subject: Quoting Martin: X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3a0243dbd8b45fa919cb39f6a05bf305b65c6d31;p=gcc.git 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 --- 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); ].