[perl #76462] [BUG] Null PMC access when doing hash indexing on a hash ref in Rakudo

2014-10-30 Thread Christian Bartolomaeus via RT
On Wed Oct 29 05:41:15 2014, barto...@gmx.de wrote: > Since the Null PMC access is gone, I'm inclined to close this ticket > (after adding a test or two). I added the tests to S02-literals/autoref.t with commit https://github.com/perl6/roast/commit/bca6134945. > $ perl6 -e 'my %h=("a"=>1,"b"=>2)

[perl #76462] [BUG] Null PMC access when doing hash indexing on a hash ref in Rakudo

2014-10-29 Thread Christian Bartolomaeus via RT
Since the Null PMC access is gone, I'm inclined to close this ticket (after adding a test or two). $ perl6 -e 'my %h=("a"=>1,"b"=>2); my $h_ref=\%h; say $h_ref.{"a"}' (Any) WRT the following command I wonder what output is expected currently. It looks as if the content of %h is put in the "list

[perl #76462] [BUG] Null PMC access when doing hash indexing on a hash ref in Rakudo

2012-11-15 Thread Will Coleda via RT
On Sun Oct 09 08:59:47 2011, coke wrote: > On Sun Jul 11 06:30:54 2010, masak wrote: > > rakudo: my %h=('a'=>1,'b'=>2); my $h_ref=\%h; say > $h_ref.{'a'} > > rakudo 7579f7: OUTPUT�Null PMC access in type() [...] > > mmh* masak submits rakudobug > > rakudo: say (\my %h) > > rakudo 7579f7: OUTPU

[perl #76462] [BUG] Null PMC access when doing hash indexing on a hash ref in Rakudo

2011-10-09 Thread Will Coleda via RT
On Sun Jul 11 06:30:54 2010, masak wrote: > rakudo: my %h=('a'=>1,'b'=>2); my $h_ref=\%h; say $h_ref.{'a'} > rakudo 7579f7: OUTPUT�Null PMC access in type() [...] > mmh* masak submits rakudobug > rakudo: say (\my %h) > rakudo 7579f7: OUTPUT�Null PMC access in type() [...] the NPA is gone, but

[perl #76462] [BUG] Null PMC access when doing hash indexing on a hash ref in Rakudo

2010-07-12 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #76462] # in the subject line of all future correspondence about this issue. # http://rt.perl.org/rt3/Ticket/Display.html?id=76462 > rakudo: my %h=('a'=>1,'b'=>2); my $h_ref=\%h; say $h_ref.{'a'} rakudo 7579f7: OUTPUT«N