X-Git-Url: https://oss.titaniummirror.com/gitweb/?a=blobdiff_plain;f=gcc%2Ftestsuite%2Fobjc%2Fexecute%2Fclass-3.m;fp=gcc%2Ftestsuite%2Fobjc%2Fexecute%2Fclass-3.m;h=0000000000000000000000000000000000000000;hb=6fed43773c9b0ce596dca5686f37ac3fc0fa11c0;hp=dbe68bf903708557168fe7cbe9ac893d2e487e28;hpb=27b11d56b743098deb193d510b337ba22dc52e5c;p=msp430-gcc.git diff --git a/gcc/testsuite/objc/execute/class-3.m b/gcc/testsuite/objc/execute/class-3.m deleted file mode 100644 index dbe68bf9..00000000 --- a/gcc/testsuite/objc/execute/class-3.m +++ /dev/null @@ -1,43 +0,0 @@ -/* Contributed by Nicola Pero - Tue Mar 6 23:05:53 CET 2001 */ -#include -#include - -/* Tests creating a root class and a minimal subclass tree */ - -@interface RootClass -{ - Class isa; -} -@end - -@implementation RootClass -@end - -@interface SubClassA : RootClass -@end - -@implementation SubClassA -@end - -@interface SubClassB : RootClass -@end - -@implementation SubClassB -@end - -@interface SubSubClass : SubClassA -@end - -@implementation SubSubClass -@end - -#include "class-tests-1.h" - -int main (void) -{ - test_class_with_superclass ("SubClassA", "RootClass"); - test_class_with_superclass ("SubClassB", "RootClass"); - test_class_with_superclass ("SubSubClass", "SubClassA"); - - return 0; -}