No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / objc / execute / root_methods.m
blobc18ceb07284e7a68eb720b9a64cb649278eccb28
1 /* Contributed by Nicola Pero - Thu Mar  8 16:27:46 CET 2001 */
2 #include <objc/objc.h>
4 #include "next_mapping.h"
6 /* Test that instance methods of root classes are available as class 
7    methods to other classes as well */
9 @interface RootClass
11   Class isa;
13 - (id) self;
14 @end
16 @implementation RootClass
17 - (id) self
19   return self;
21 #ifdef __NEXT_RUNTIME__                                   
22 + initialize { return self; }
23 #endif
24 @end
26 @interface NormalClass : RootClass
27 @end
29 @implementation NormalClass : RootClass
30 @end
32 int main (void)
34   Class normal = objc_get_class ("NormalClass");
36   if (normal == Nil)
37     {
38       abort ();
39     }
41   if ([NormalClass self] != normal)
42     {
43       abort ();
44     }
46   return 0;