Skip to content

Commit e369518

Browse files
committed
Fix test for RT#123776
1 parent 5a54795 commit e369518

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

S04-phasers/begin.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,8 @@ plan 13;
7777
# RT #123776
7878
#?rakudo todo 'RT#123776'
7979
{
80-
my $bound = 'bar';
81-
BEGIN { $bound = 'foo'; }
80+
my $bound;
81+
BEGIN { $bound := 'foo'; }
8282
is $bound, 'foo', "Value bound to variable in BEGIN persists";
8383
}
8484

0 commit comments

Comments
 (0)