Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
niner committed Aug 26, 2015
1 parent f35a02d commit 3d5ee1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S16-io/bare-say.t
Expand Up @@ -33,7 +33,7 @@ is_run( 'say("")',
}

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

0 comments on commit 3d5ee1f

Please sign in to comment.