# New Ticket Created by Sam S. # Please include the string: [perl #126951] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=126951 >
Example:
sub f (*%args) {
say .perl for %args.keys
}
my %typedhash := :{ a => 1, b => 2 };
f |%typedhash;
Ouput:
"Str|a"
"Str|b"
Expected output:
"a"
"b"
