[PATCH 06/11] Handle enums for CodeView
[official-gcc.git] / gcc / testsuite / objc.dg / special / unclaimed-category-1.h
blobcb5812ea327319c52e7baf92650bdc8d0d446618
1 /* Contributed by Nicola Pero - Fri Dec 14 08:36:00 GMT 2001 */
2 /* { dg-additional-options "-Wno-objc-root-class" } */
4 /* Test loading unclaimed categories - categories of a class defined
5 separately from the class itself. */
7 @interface TestClass
9 Class isa;
11 - (int)D;
12 @end
14 @interface TestClass (A)
15 - (int)A;
16 @end
18 @interface TestClass (B)
19 - (int)B;
20 @end
22 @interface TestClass (C)
23 - (int)C;
24 @end