]> git.saurik.com Git - apple/objc4.git/blame - test/future2.m
objc4-818.2.tar.gz
[apple/objc4.git] / test / future2.m
CommitLineData
13ba007e
A
1#include "future.h"
2
3
4@implementation Sub1
5+(Class)classref {
6 return [Sub1 class];
7}
8+(int)method {
9 return 1;
10}
11@end
12
13@implementation SubSub1
14+(int)method {
15 return 1 + [super method];
16}
17@end