]> git.saurik.com Git - apple/objc4.git/blob - test/unload2.m
objc4-532.2.tar.gz
[apple/objc4.git] / test / unload2.m
1 #include "unload.h"
2 #include "testroot.i"
3
4
5 @implementation SmallClass : TestRoot
6 -(void)unload2_instance_method { }
7 @end
8
9
10 @implementation BigClass : TestRoot
11 +(void) forward:(void *) __unused sel :(void*) __unused args { }
12 -(void) forward:(void *) __unused sel :(void*) __unused args { }
13 @end
14
15
16 @interface UnusedClass { id isa; } @end
17 @implementation UnusedClass @end
18
19
20 @implementation SmallClass (Category)
21 -(void)unload2_category_method { }
22 @end