Ticket #203 (new bug)
assign_pmc broken for pir subclasses?
Reported by: | coke | Owned by: | |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | core | Version: | |
Severity: | medium | Keywords: | |
Cc: | Language: | ||
Patch status: | Platform: |
Description
.sub main $P1 = new 'Hash' .local pmc undef undef = new 'Undef' assign $P1, undef $S0 = typeof $P1 say $S0 $P1 = get_class 'Hash' $P2 = subclass $P1, 'myHash' $P1 = new 'myHash' .local pmc undef undef = new 'Undef' assign $P1, undef $S0 = typeof $P1 say $S0 .end
this prints:
Undef myHash
but I expect it to print
Undef Undef
- this is blocking partcl.
Change History
Note: See
TracTickets for help on using
tickets.