We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d225fe commit 2fc07d1Copy full SHA for 2fc07d1
S32-list/repeated.t
@@ -145,7 +145,6 @@ This test tests the C<repeated> builtin.
145
my %a;
146
%a<foo> = <a b c b c>;
147
%a<foo>.=repeated;
148
- #?rakudo.jvm skip 'This Seq has already been iterated, RT #128720'
149
is-deeply %a<foo>.List, <b c>,
150
"\%a<foo> not clobbered by .=repeated";
151
} # 1
S32-list/unique.t
@@ -150,7 +150,6 @@ This test tests the C<unique> builtin.
%a<foo> = <a b c>;
152
%a<foo>.=unique;
153
154
is-deeply %a<foo>.List, <a b c>,
155
"\%a<foo> not clobbered by .=unique";
156
0 commit comments