[perl #130827] [BUG] %hash«$key»:exists is true allways

2017-02-21 Thread Zoffix Znet via RT
On Tue, 21 Feb 2017 05:15:56 -0800, jar...@bansu.fi wrote: > EXAMPLE: > my %hash = foo => 1; > if %hash:exists { > say "not gonna print this"; > } > my $key = 'b'; > if %hash«$key»:exists { > say "why i'm here"; > } > > OUTPUT: > why i'm here > > EXPECTED RESULT: > (Should not print anything) >

[perl #128047] [IO] Rakudo may crash if you use get() when -n is used (perl6 -ne 'say get' <<< 'hello')

2017-02-21 Thread Zoffix Znet via RT
On Sun, 01 May 2016 04:12:34 -0700, alex.jakime...@gmail.com wrote: > This bug report is somewhat related to > https://rt.perl.org/Ticket/Display.html?id=128046 > > get() crashes with a weird error if the stream has ended. > > Command: > perl6 -ne 'get' <<< $'hello\nworld\ntest' > > Result: > wo