Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix test for RT#123776
  • Loading branch information
skids committed Aug 20, 2015
1 parent 211dc1d commit f70ab58
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions S04-phasers/begin.t
Expand Up @@ -77,8 +77,8 @@ plan 13;
# RT #123776
#?rakudo todo 'RT#123776'
{
my $bound = 'bar';
BEGIN { $bound = 'foo'; }
my $bound;
BEGIN { $bound := 'foo'; }
is $bound, 'foo', "Value bound to variable in BEGIN persists";
}

Expand Down

0 comments on commit f70ab58

Please sign in to comment.