Skip to content

Commit ac98bef

Browse files
committed
refudge pairs.t for nom
1 parent 73fa45b commit ac98bef

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

S32-hash/pairs.t

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,18 +59,19 @@ Basic C<pairs> tests, see S32::Containers.
5959
"pairs() on 1-elem hash, 2-depth joined" );
6060
}
6161

62+
#?rakudo todo "Rakudo seems to make a copy rather than a reference"
6263
{
6364
my %hash = (:a(1), :b(2), :c(3));
6465

6566
lives_ok { for %hash.pairs -> $pair {
6667
$pair.value += 100;
6768
} }, 'aliases returned by %hash.pairs should be rw (1)';
6869

69-
#?rakudo todo "Rakudo seems to make a copy rather than a reference"
7070
is %hash<b>, 102, 'aliases returned by %hash.pairs should be rw (2)';
7171
}
7272

7373
#?pugs todo 'bug'
74+
#?rakudo todo "Rakudo seems to make a copy rather than a reference"
7475
{
7576
my $var = 42;
7677
my $pair = (a => $var);

0 commit comments

Comments
 (0)