Merged r157653 through r157895 into branch.
[official-gcc.git] / gcc / testsuite / objc.dg / special / unclaimed-category-1.h
blob0453033f3d2c85e90a395fa2737cce3c044aa867
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 @interface TestClass
8 id isa;
10 - (int)D;
11 @end
13 @interface TestClass (A)
14 - (int)A;
15 @end
17 @interface TestClass (B)
18 - (int)B;
19 @end
21 @interface TestClass (C)
22 - (int)C;
23 @end