Skip to content

Commit 3d5ee1f

Browse files
committed
GLRify S16-io/bare-say.t
Z returns (('a', '1'), ('b', '2'), ('c', '3')). Need to explicitly flatten that before passing to the hash constructor.
1 parent f35a02d commit 3d5ee1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

S16-io/bare-say.t

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ is_run( 'say("")',
3333
}
3434

3535
# RT #74822
36-
is_run( 'my %h=<a b c> Z 1,2,3; for %h.sort(*.key) { .say }',
36+
is_run( 'my %h= flat <a b c> Z 1,2,3; for %h.sort(*.key) { .say }',
3737
{
3838
status => 0,
3939
out => "a => 1\nb => 2\nc => 3\n",

0 commit comments

Comments
 (0)