1 /* Contributed by Nicola Pero - Thu Mar 8 16:27:46 CET 2001 */
4 #include "next_mapping.h"
6 /* Test that instance methods of root classes are available as class
7 methods to other classes as well */
16 @implementation RootClass
21 #ifdef __NEXT_RUNTIME__
22 + initialize { return self; }
26 @interface NormalClass : RootClass
29 @implementation NormalClass : RootClass
34 Class normal = objc_get_class ("NormalClass");
41 if ([NormalClass self] != normal)