]> git.saurik.com Git - apple/objc4.git/blobdiff - test/future2.m
objc4-437.tar.gz
[apple/objc4.git] / test / future2.m
diff --git a/test/future2.m b/test/future2.m
new file mode 100644 (file)
index 0000000..c5ebb58
--- /dev/null
@@ -0,0 +1,17 @@
+#include "future.h"
+
+
+@implementation Sub1
++(Class)classref { 
+    return [Sub1 class];
+}
++(int)method {
+    return 1;
+}
+@end
+
+@implementation SubSub1 
++(int)method {
+    return 1 + [super method];
+}
+@end