Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
((1,2) xx *) needs to be .flattened to be (1,2,1,2,…)
  • Loading branch information
Mouq committed Mar 11, 2015
1 parent f9c334d commit a9895b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S02-types/whatever.t
Expand Up @@ -116,7 +116,7 @@ isa_ok (1..*-1)(10), Range, '(1..*-1)(10) is a Range';
}

#?niecza skip 'hangs'
is (0,0,0,0,0,0) >>+>> ((1,2) xx *), <1 2 1 2 1 2>, 'xx * works';
is (0,0,0,0,0,0) >>+>> ((1,2) xx *).flat, <1 2 1 2 1 2>, 'xx * works';

{
is (1, Mu, 2, 3).grep(*.defined), <1 2 3>, '*.defined works in grep';
Expand Down

0 comments on commit a9895b9

Please sign in to comment.