]> git.saurik.com Git - apple/objc4.git/blob - test/weak.h
objc4-437.3.tar.gz
[apple/objc4.git] / test / weak.h
1 #include "test.h"
2 #include <objc/runtime.h>
3
4 extern int state;
5
6 @interface MissingRoot {
7 id isa;
8 }
9 +(void) initialize;
10 +(Class) class;
11 +(id) alloc;
12 -(id) init;
13 +(int) method;
14 @end
15
16 @interface MissingSuper : MissingRoot {
17 @public
18 int ivar;
19 }
20 @end
21
22
23 @interface NotMissingRoot {
24 id isa;
25 }
26 +(void) initialize;
27 +(Class) class;
28 +(id) alloc;
29 -(id) init;
30 +(int) method;
31 @end
32
33 @interface NotMissingSuper : NotMissingRoot {
34 @public
35 int unused[100];
36 int ivar;
37 }
38 @end