aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.8.1/gcc/testsuite/obj-c++.dg/comp-types-9.mm
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.8.1/gcc/testsuite/obj-c++.dg/comp-types-9.mm')
-rw-r--r--gcc-4.8.1/gcc/testsuite/obj-c++.dg/comp-types-9.mm25
1 files changed, 0 insertions, 25 deletions
diff --git a/gcc-4.8.1/gcc/testsuite/obj-c++.dg/comp-types-9.mm b/gcc-4.8.1/gcc/testsuite/obj-c++.dg/comp-types-9.mm
deleted file mode 100644
index 6c571325a..000000000
--- a/gcc-4.8.1/gcc/testsuite/obj-c++.dg/comp-types-9.mm
+++ /dev/null
@@ -1,25 +0,0 @@
-/* { dg-do compile } */
-
-/* Another gimplifier ICE... */
-
-#include "../objc-obj-c++-shared/TestsuiteObject.h"
-
-@interface MyView: TestsuiteObject {
- int _frame;
-}
-- (void)_finalize;
-@end
-
-@interface MyViewTemplate: MyView {
- void *_className;
-}
-- (id)createRealObject;
-@end
-
-@implementation MyViewTemplate
-- (id)createRealObject {
- id realObj;
- *(MyView *)realObj = *(MyView *)self;
- return realObj;
-}
-@end