]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.robertl/eb66.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb66.C
diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb66.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb66.C
deleted file mode 100644 (file)
index 00ef6b0..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-#include <cassert>
-#include <iostream>
-
-int bar ()
-{
-  throw 100;
-}
-
-int main ()
-{
-  int i = 0;
-  try
-    {
-      i = bar ();
-    }
-  catch (...)
-    {
-    }
-
-//  std::cout << "i = " << i << std::endl;
-  assert (i == 0) ; 
-}
-
-
-
-