restore
authorJason Merrill <jason@gcc.gnu.org>
Thu, 4 Jun 1998 02:26:15 +0000 (22:26 -0400)
committerJason Merrill <jason@gcc.gnu.org>
Thu, 4 Jun 1998 02:26:15 +0000 (22:26 -0400)
From-SVN: r20222

gcc/testsuite/g++.old-deja/g++.robertl/eb88.C [new file with mode: 0644]

diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb88.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb88.C
new file mode 100644 (file)
index 0000000..06b200c
--- /dev/null
@@ -0,0 +1,12 @@
+#include <stddef.h>
+
+int main()
+{
+  try
+    {
+      throw(NULL);
+    }
+  catch (...)
+    {
+    }
+}