Commit 0475ed26 by Nicola Pero Committed by Nicola Pero

Call [Object class], not [Object initialize]

From-SVN: r56721
parent d99f015c
Sun Sep 1 12:47:39 2002 Nicola Pero <n.pero@mi.flashnet.it>
* objc/execute/class-tests-1.h (test_class_with_superclass): Call
[Object class], not [Object initialize].
2002-08-31 Roger Sayle <roger@eyesopen.com>
Hans-Peter Nilsson <hp@bitrange.com>
......
......@@ -113,7 +113,7 @@ void test_class_with_superclass (const char *class_name,
/* We need at least a method call before playing with the internals,
so that the runtime will call __objc_resolve_class_links () */
[Object initialize];
[Object class];
/* class_name must be an existing class */
class = objc_lookup_class (class_name);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment