Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Correct test for RT #76444. Mouq++
  • Loading branch information
peschwa committed Jan 26, 2014
1 parent e951886 commit 7af18f0
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion S03-operators/assign.t
Expand Up @@ -974,7 +974,10 @@ sub l () { 1, 2 };
}

# RT #76444
ok 'say (my $a) = 1,2,3', '1 2 3';
{
(my $a) = 1,2,3;
is $a, (1,2,3), "Assignment into parentheses'd my works.";
}


# vim: ft=perl6

0 comments on commit 7af18f0

Please sign in to comment.