Skip to content

Commit

Permalink
Add fudged test ("todo") for RT #76414
Browse files Browse the repository at this point in the history
  • Loading branch information
usev6 committed Nov 22, 2014
1 parent b33ad00 commit 3e737ee
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion S03-operators/assign.t
Expand Up @@ -6,7 +6,7 @@ use Test;
# V
# L<S03/Changes to Perl 5 operators/list assignment operator now parses on the right>

plan 292;
plan 293;


# tests various assignment styles
Expand Down Expand Up @@ -941,4 +941,13 @@ sub l () { 1, 2 };
is $x, (3,2,1), "Routine call taking a parenthesised my as argument works. #3";
}

# RT #76414
#?rakudo todo 'RT #76414'
{
my @rt76414 = (1, 2);
@rt76414 ,= 3, 4; # same as push(@rt76414,3,4) according to S03
is @rt76414, (1, 2, 3, 4),
'infix:<,=> has list precedence in the cases where infix:<=> does';
}

# vim: ft=perl6

0 comments on commit 3e737ee

Please sign in to comment.