1 /* Contributed by Nicola Pero - Fri Mar 9 19:39:15 CET 2001 */
4 #include "../../objc-obj-c++-shared/runtime.h"
6 /* Test the hidden argument _cmd to method calls */
12 + (const char*) method;
15 @implementation TestClass
16 + (const char*) method
18 return sel_getName (_cmd);
20 + initialize { return self; }
26 if (strcmp ([TestClass method], "method"))