[perl #123969] NullPointerException on jvm for same CStruct in CStruct

2015-06-29 Thread Christian Bartolomaeus via RT
At first sight this looks good now: $ perl6-j -e 'class Foo is repr { has int32 $.idontcare; has Foo $.bar }; my $a = Foo.new; say "alive"' alive Unfortunatly, another NullPointerException surfaces when looking at the newly created $a: $ perl6-j -e 'class Foo is repr { has int32 $.idontcare; h

[perl #77788] [BUG] Can't pass in several same-named named parameters to a sub

2015-06-29 Thread Christian Bartolomaeus via RT
This works now on rakudo.jvm. On rakudo.moar 'foo(|%h, a => "c")' doesn't give the correct result, yet: $ perl6-j -e 'sub foo(*%p) { say %p.perl }; foo(a => "b", a => "c")' {:a("c")}<> $ perl6-j -e 'sub foo(*%p) { say %p.perl }; my %h = a => "b"; foo(|%h, a => "c")' {:a("c")}<> $ perl6-m -e 's

[perl #125499] using say (gist) on an object that contains a circular reference hangs/leaks

2015-06-29 Thread Stephen Simmons
# New Ticket Created by "Stephen Simmons" # Please include the string: [perl #125499] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125499 > It appears that using say on object1 which contains object2, which contains object1

[perl #125509] [BUG] not 1i === 1i

2015-06-29 Thread via RT
# New Ticket Created by grond...@yahoo.fr # Please include the string: [perl #125509] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125509 > $ perl6 --version This is perl6 version 2015.06-68-ga47a3d8 built on MoarVM version

[perl #125507] [BUG] A script shows an invalid read in valgrind (and leaks and segfaults) in Rakudo

2015-06-29 Thread Carl Mäsak
# New Ticket Created by "Carl Mäsak" # Please include the string: [perl #125507] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=125507 > i'm a newbie. started playing with perl6 just recently. i wrote a module with the help o