1 /* Contributed by Nicola Pero - Fri Oct 26 22:39:32 BST 2001 */
4 /* Test calling a class method when there is an instance method
5 with conflicting types */
7 /* This class should be unused but on broken compilers its instance
8 method might get picked up and used instead of the class method of
15 @interface UnusedClass
22 @implementation UnusedClass
41 @implementation TestClass
44 if ([self method] != 4)
54 + initialize { return self; }