# New Ticket Created by Stephane Payrard # Please include the string: [perl #76928] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=76928 >
> sub a( %h?) { say %h.HOW }; a(); Method 'HOW' not found for invocant of class 'Hash' Also I would expect it to DWIM in a code like that sub a( %h?, *%h1) { say "{%h.defined} {%h1.defined}"; say {%h, %h1}.keys }; a( :b ); -- cognominal stef