Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
only test what we're supposed to be testing
  • Loading branch information
TimToady committed Sep 24, 2015
1 parent 0957cce commit 685e548
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion S04-statements/for.t
Expand Up @@ -383,11 +383,12 @@ eval-dies-ok('for(0..5) { }','keyword needs at least one whitespace after it');
#diag ">$str<";
}

# RT #63994
#?niecza 2 todo 'NYI'
{
my $str = '';
for 1..5 -> $x, $y? {
$str ~= " " ~ $x*$y;
$str ~= " " ~ $x * ($y//0);
}
is $str, " 2 12 0";
}
Expand Down

0 comments on commit 685e548

Please sign in to comment.