]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.eh/crash6.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.eh / crash6.C
diff --git a/gcc/testsuite/g++.old-deja/g++.eh/crash6.C b/gcc/testsuite/g++.old-deja/g++.eh/crash6.C
deleted file mode 100644 (file)
index 1f5dcce..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-// Build don't link:
-// 
-// Copyright (C) 2001 Free Software Foundation, Inc.
-// Contributed by Nathan Sidwell 26 April 2001 <nathan@codesourcery.com>
-// Origin: schmid@snake.iap.physik.tu-darmstadt.de
-
-// Bug 2368. When checking shadowed catchers, we didn't ignore
-// template type parms etc, leading to an ICE
-
-template<class CatchType1, class CatchType2>
-void call(int& a)
-{
-  try 
-    {
-      
-    }
-  catch (CatchType1&)
-    { 
-      
-    }
-  catch (CatchType2&)
-    { 
-      
-    }
-}
-