Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / objc.dg / special / unclaimed-category-1a.m
blob6bcd1b4c53c7848caf0adf4b46e4d39252be5eeb
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 #include "unclaimed-category-1.h"
10 @implementation TestClass (A)
11 - (int)A
13   return 1;
15 @end
17 @implementation TestClass (B)
18 - (int)B
20   return 2;
22 @end
24 @implementation TestClass (C)
25 - (int)C
27   return 3;
29 @end