]> git.saurik.com Git - apple/ld64.git/blob - unit-tests/test-cases/objc-category-archive/test.m
ld64-123.2.tar.gz
[apple/ld64.git] / unit-tests / test-cases / objc-category-archive / test.m
1
2 #include <Foundation/Foundation.h>
3
4 int some_global_to_stop_libtool_warning = 5;
5
6 @interface NSObject (stuff)
7 - (void) mycatmethod1;
8 @end
9
10 @implementation NSObject (stuff)
11 - (void) mycatmethod1 { }
12 @end
13
14 @interface NSObject (other)
15 - (void) mycatmethod2;
16 @end
17
18 @implementation NSObject (other)
19 - (void) mycatmethod2 { }
20 @end
21