# New Ticket Created by  zengargoyle 
# Please include the string:  [perl #126507]
# in the subject line of all future correspondence about this issue. 
# <URL: https://rt.perl.org/Ticket/Display.html?id=126507 >


Tests at:
https://gist.github.com/zengargoyle/5ba20a3c5799327b44d0

my %h{Any};
my $i = (1,2,3);
%h{$i} = 'foo';
%h{$i}:exists  # (False, False, False)
%h.EXISTS-KEY($i) # True

:exists causes $I to slice.

Reply via email to