aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/obj-c++.dg/try-catch-7.mm
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/obj-c++.dg/try-catch-7.mm')
-rw-r--r--gcc-4.8.1/gcc/testsuite/obj-c++.dg/try-catch-7.mm24
1 files changed, 0 insertions, 24 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/obj-c++.dg/try-catch-7.mm b/gcc-4.8.1/gcc/testsuite/obj-c++.dg/try-catch-7.mm
deleted file mode 100644
index ecab4e6e3..000000000
--- a/gcc-4.8.1/gcc/testsuite/obj-c++.dg/try-catch-7.mm
+++ /dev/null
@@ -1,24 +0,0 @@
-/* { dg-do compile } */
-/* { dg-options "-fobjc-exceptions" } */
-
-#include "../objc-obj-c++-shared/TestsuiteObject.h"
-
-int main (int argc, const char * argv[]) {
- TestsuiteObject * pool = [TestsuiteObject new];
- int a;
-
- if ( 1 ) {
- @try {
- a = 1;
- }
- @catch (TestsuiteObject *e) {
- a = 2;
- }
- @finally {
- a = 3;
- }
- }
-
- [pool free];
- return 0;
-}