FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / objc.dg / special / unclaimed-category-1.h
blob6c73d28fd17f0cf4f28b81b4e21ffaefc1e8f609
1 /* Contributed by Nicola Pero - Fri Dec 14 08:36:00 GMT 2001 */
2 #include <objc/objc.h>
3 #include <objc/Object.h>
5 /* Test loading unclaimed categories - categories of a class defined
6 separately from the class itself. */
8 @interface TestClass
10 id isa;
12 - (int)D;
13 @end
15 @interface TestClass (A)
16 - (int)A;
17 @end
19 @interface TestClass (B)
20 - (int)B;
21 @end
23 @interface TestClass (C)
24 - (int)C;
25 @end