summaryrefslogtreecommitdiff
path: root/gcc/testsuite/objc/execute/root_methods.m
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/testsuite/objc/execute/root_methods.m')
-rw-r--r--gcc/testsuite/objc/execute/root_methods.m47
1 files changed, 47 insertions, 0 deletions
diff --git a/gcc/testsuite/objc/execute/root_methods.m b/gcc/testsuite/objc/execute/root_methods.m
new file mode 100644
index 000000000..d9085ae7b
--- /dev/null
+++ b/gcc/testsuite/objc/execute/root_methods.m
@@ -0,0 +1,47 @@
+/* Contributed by Nicola Pero - Thu Mar 8 16:27:46 CET 2001 */
+
+#import "../../objc-obj-c++-shared/next-mapping.h"
+#import <objc/objc.h>
+
+/* Test that instance methods of root classes are available as class
+ methods to other classes as well */
+
+@interface RootClass
+{
+ Class isa;
+}
+- (id) self;
+@end
+
+@implementation RootClass
+- (id) self
+{
+ return self;
+}
+#ifdef __NEXT_RUNTIME__
++ initialize { return self; }
+#endif
+@end
+
+@interface NormalClass : RootClass
+@end
+
+@implementation NormalClass : RootClass
+@end
+
+int main (void)
+{
+ Class normal = objc_get_class ("NormalClass");
+
+ if (normal == Nil)
+ {
+ abort ();
+ }
+
+ if ([NormalClass self] != normal)
+ {
+ abort ();
+ }
+
+ return 0;
+}