]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.robertl/eb50.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.robertl / eb50.C
diff --git a/gcc/testsuite/g++.old-deja/g++.robertl/eb50.C b/gcc/testsuite/g++.old-deja/g++.robertl/eb50.C
deleted file mode 100644 (file)
index c7f9076..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-struct foo { };
-int f(int a, int b)
-{
-        if (b == 0)
-                throw foo();
-        return a / b;
-}
-int main()
-{
-        try {
-                f(0, 0);
-                return 1;
-        } catch (foo x) {
-                return 0;
-        }
-}