# New Ticket Created by Will Coleda # Please include the string: [perl #31862] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org:80/rt3/Ticket/Display.html?id=31862 >
Shouldn't this push just like PerlArray except with bounds checking? oolong:~/research/parrot coke$ cat foo.imc #!./parrot .sub main $P0 = new PerlArray $P1 = new FixedPMCArray $P1 = 10 $P2 = new PerlUndef push $P0, $P2 push $P1, $P2 end .end oolong:~/research/parrot coke$ ./foo.imc push_pmc() not implemented in class 'FixedPMCArray'\noolong:~/research/parrot coke$