# New Ticket Created by Ilya Belikin # Please include the string: [perl #58830] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=58830 >
Hi, look like bug (in r31017): my $k = 'bar'; my %s; say defined $k; # 1 say defined %s{$k}; # 0 say defined $k and defined %s{$k}; # 1 (!) must be 0 say 1 && 0; # 0 Ilya Vladivostok.pm