Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
junctional listops don't flatten now
  • Loading branch information
TimToady committed Sep 20, 2015
1 parent 87bf26b commit 9079e5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion S03-operators/eqv.t
Expand Up @@ -142,7 +142,7 @@ plan 54;
}

{
ok 'a' eqv any <a b c>, "eqv autothreads correctly";
ok 'a' eqv any(<a b c>), "eqv autothreads correctly";
}

# RT #75322 - Rakudo used to be confused when lists began with ()
Expand Down
2 changes: 1 addition & 1 deletion S03-operators/precedence.t
Expand Up @@ -169,7 +169,7 @@ is(((not 1,42)[1]), 42, "not is tighter than comma");
# list prefix

{
my $c = any 1, 2 Z 3, 4;
my $c = any flat 1, 2 Z 3, 4;
ok($c == 3, "any is less tight than comma and Z");
}

Expand Down

0 comments on commit 9079e5d

Please sign in to comment.