]> git.saurik.com Git - apple/ld64.git/blob - ld64-134.9/unit-tests/test-cases/objc-category-archive/test.m
5347856bad4f38a8c2d07a7e0239e8e61db75051
[apple/ld64.git] / ld64-134.9 / 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