1 /* Contributed by Nicola Pero - Fri Mar 9 19:39:15 CET 2001 */
3 #include <objc/objc-api.h>
5 #include "next_mapping.h"
7 /* Test the hidden argument _cmd to method calls */
13 + (const char*) method;
16 @implementation TestClass
17 + (const char*) method
19 return sel_get_name (_cmd);
21 #ifdef __NEXT_RUNTIME__
22 + initialize { return self; }
29 if (strcmp ([TestClass method], "method"))