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


It appears that using a bareword-form hash key that starts with the
letters "state" will result in a spurious NYI error:

$ perl6 -e 'my %hash = (statement => "foobar")'
===SORRY!===
"state" not yet implemented at line 1, near "ment => \"f"

$ perl6 -e 'my %hash = ("statement" => "foobar")'
$

Reply via email to