]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.dg/other/exception-specification.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.dg / other / exception-specification.C
diff --git a/gcc/testsuite/g++.dg/other/exception-specification.C b/gcc/testsuite/g++.dg/other/exception-specification.C
deleted file mode 100644 (file)
index 64807dd..0000000
+++ /dev/null
@@ -1,10 +0,0 @@
-// { dg-do compile }
-
-struct S { void f (void); };
-
-typedef void f1 (void) throw (int); // { dg-error "exception" }
-typedef void (*f2) (void) throw (int); // { dg-error "exception" }
-typedef void (S::*f3) (void) throw (int); // { dg-error "exception" }
-
-void (*f4) (void) throw (int);
-void (S::*f5) (void) throw (int);