Merged r157653 through r157895 into branch.
[official-gcc.git] / gcc / testsuite / objc.dg / special / unclaimed-category-1a.m
blob4fb2d4619060d608eb086f05824b059564335669
1 /* Contributed by Nicola Pero - Fri Dec 14 08:36:00 GMT 2001 */
3 /* Test loading unclaimed categories - categories of a class defined
4    separately from the class itself.  */
6 #include "unclaimed-category-1.h"
8 @implementation TestClass (A)
9 - (int)A
11   return 1;
13 @end
15 @implementation TestClass (B)
16 - (int)B
18   return 2;
20 @end
22 @implementation TestClass (C)
23 - (int)C
25   return 3;
27 @end