diff options
author | Robert Lipe <robertl@gcc.gnu.org> | 1998-06-02 19:47:20 +0000 |
---|---|---|
committer | Robert Lipe <robertl@gcc.gnu.org> | 1998-06-02 19:47:20 +0000 |
commit | 3a0243dbd8b45fa919cb39f6a05bf305b65c6d31 (patch) | |
tree | 48bc128c5b6cea3e40425e068cae49897d7a5128 | |
parent | 57f1de49ebe1462104fad2c5bea6766b6d117718 (diff) | |
download | gcc-3a0243dbd8b45fa919cb39f6a05bf305b65c6d31.zip gcc-3a0243dbd8b45fa919cb39f6a05bf305b65c6d31.tar.gz gcc-3a0243dbd8b45fa919cb39f6a05bf305b65c6d31.tar.bz2 |
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
-rw-r--r-- | gcc/testsuite/g++.old-deja/g++.robertl/eb88.C | 7 |
1 files changed, 0 insertions, 7 deletions
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 ba2a081..0000000 --- a/gcc/testsuite/g++.old-deja/g++.robertl/eb88.C +++ /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); ]. |