2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / objc / execute / _cmd.m
blob72c555e6d429586033bc674ecd61a507fd7c1d0b
1 /* Contributed by Nicola Pero - Fri Mar  9 19:39:15 CET 2001 */
2 #include <objc/objc.h>
3 #include <objc/objc-api.h>
5 #include "next_mapping.h"
7 /* Test the hidden argument _cmd to method calls */
9 @interface TestClass 
11   Class isa;
13 + (const char*) method;
14 @end
16 @implementation TestClass
17 + (const char*) method
19   return sel_get_name (_cmd);
21 #ifdef __NEXT_RUNTIME__
22 + initialize { return self; }
23 #endif
24 @end
27 int main (void)
29   if (strcmp ([TestClass method], "method"))
30     {
31       abort ();
32     }
34   return 0;