[MacRuby] #437: -[NSObject hash] values change when MacRuby is initialized
#437: -[NSObject hash] values change when MacRuby is initialized ---------------------------------+------------------------------------------ Reporter: illenberger@… | Owner: lsansonetti@… Type: defect | Status: new Priority: major | Milestone: MacRuby 0.5 Component: MacRuby | Keywords: NSObject hash ---------------------------------+------------------------------------------ The assertion in the following test fails under MacRuby 0.5b1: {{{ #import <MacRuby/MacRuby.h> int main(int argc, char *argv[]) { NSObject* testObject = [[NSObject alloc] init]; NSUInteger hash = testObject.hash; [MacRuby sharedRuntime]; NSCAssert(testObject.hash == hash, @"Hash value changed"); return 0; } }}} -- Ticket URL: <http://www.macruby.org/trac/ticket/437> MacRuby <http://macruby.org/>
#437: -[NSObject hash] values change when MacRuby is initialized ---------------------------------+------------------------------------------ Reporter: illenberger@… | Owner: lsansonetti@… Type: defect | Status: closed Priority: major | Milestone: MacRuby 0.5 Component: MacRuby | Resolution: fixed Keywords: NSObject hash | ---------------------------------+------------------------------------------ Changes (by lsansonetti@…): * status: new => closed * resolution: => fixed Comment: Should be fixed in r3061. {{{ $ gcc /tmp/t.m -o /tmp/t -framework MacRuby -framework Foundation -fobjc- gc $ /tmp/t $ }}} -- Ticket URL: <http://www.macruby.org/trac/ticket/437#comment:1> MacRuby <http://macruby.org/>
participants (1)
-
MacRuby