]> git.saurik.com Git - apple/objc4.git/blob - test/ivarSlide1.m
objc4-493.9.tar.gz
[apple/objc4.git] / test / ivarSlide1.m
1 #include "test.h"
2 #include <stdint.h>
3 #include <objc/runtime.h>
4
5 #define OLD 0
6 #include "ivarSlide.h"
7
8 @implementation Base
9 +(void)initialize { }
10 +class { return self; }
11 +new { return class_createInstance(self, 0); }
12 -(void)dealloc { object_dispose(self); }
13 -(void)finalize { }
14 @end
15
16 @implementation Super @end
17
18 @implementation ShrinkingSuper @end
19
20 @implementation MoreStrongSuper @end
21 @implementation LessStrongSuper @end
22 @implementation MoreWeakSuper @end
23 @implementation MoreWeak2Super @end
24 @implementation LessWeakSuper @end
25 @implementation LessWeak2Super @end
26 @implementation NoGCChangeSuper @end
27 @implementation RunsOf15 @end