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

2017-02-22 Thread via RT
# New Ticket Created by Jarkko Haapalainen # Please include the string: [perl #130827] # in the subject line of all future correspondence about this issue. # https://rt.perl.org/Ticket/Display.html?id=130827 > EXAMPLE: my %hash = foo => 1; if %hash:exists { say "not gonna print this"; } my $k

[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) >