[perl #126657] [JVM] NPE in BagHash/MixHash/SetHash tests

2015-11-16 Thread Will Coleda via RT
On Mon Nov 16 11:42:48 2015, coke wrote: > On Mon Nov 16 10:46:19 2015, coke wrote: > > Many instances of a NPE in S02-types/baghash.t > > Also using this ticket to track S02-types/mixhash.t NPEs and sethash.t's NPEs -- Will "Coke" Coleda

[perl #126657] [JVM] NPE in BagHash/MixHash tests

2015-11-16 Thread Will Coleda via RT
On Mon Nov 16 10:46:19 2015, coke wrote: > Many instances of a NPE in S02-types/baghash.t Also using this ticket to track S02-types/mixhash.t NPEs -- Will "Coke" Coleda

[perl #126657] [JVM] NPE in BagHash tests

2015-11-16 Thread via RT
# New Ticket Created by Will Coleda # Please include the string: [perl #126657] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126657 > Many instances of a NPE in S02-types/baghash.t -- Will "Coke" Coleda

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

2015-11-16 Thread jn...@jnthn.net via RT
On Mon Jun 29 13:58:37 2015, barto...@gmx.de wrote: > 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

[perl #126656] [JVM] NPE on certain array/hash access

2015-11-16 Thread via RT
# New Ticket Created by Will Coleda # Please include the string: [perl #126656] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126656 > S03-metaops/hyper.t has several NPEs across a variety of the tests. -- Will "Coke" Coled

[perl #113546] Duplicate flattened nameds aren't filtered out

2015-11-16 Thread jn...@jnthn.net via RT
On Sat Aug 29 03:18:43 2015, coke wrote: > On Thu Aug 21 13:12:32 2014, coke wrote: > > On Thu Jun 07 13:07:46 2012, kristofbogae...@gmail.com wrote: > > > p6: sub s_s(*%n) { %n>>.say }; s_s(|{:assoc}, :assoc); > > > # > > > which one is correct? > > > rakudo e75a0a: OUTPUT«duplicate named argumen

[perl #126655] [JVM] NPE on certain hash types with whatever/zen access

2015-11-16 Thread via RT
# New Ticket Created by Will Coleda # Please include the string: [perl #126655] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126655 > S32-hash/adverbs.t has some NullPointerExceptions when running certain tests. -- Will

[perl #126654] [POD] Formatting codes does not work inside declarator blocks

2015-11-16 Thread Kamil Kułaga
# New Ticket Created by "Kamil Kułaga" # Please include the string: [perl #126654] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126654 > Examples in spec http://design.perl6.org/S26.html#Declarator_blocks contain formatting

[perl #126653] [BUG] trait "is looser" doesn't work as expected.

2015-11-16 Thread via RT
# New Ticket Created by # Please include the string: [perl #126653] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=126653 > How to reproduce: perl6 -e 'sub postfix:(Int $a) is looser(&infix:<+>) { 2 * $a }; say (3 + 4!)