Skip to content

Commit

Permalink
Fix test for fix of #120501: (my &).say # Callable
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Nov 10, 2013
1 parent a36fd9f commit dfd5d4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion S04-declarations/my.t
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ eval_lives_ok 'multi f(@a) { }; multi f(*@a) { }; f(my @a = (1, 2, 3))',
my & = { * - 5 };
is my @, Array.new, q{anonymous @ doesn't overshare};
is my %, ().hash, q{anonymous % doesn't overshare};
ok (my &) eqv Any, q{anonymous sub doesn't overshare};
ok (my &) eqv Callable, q{anonymous sub doesn't overshare};
}

# vim: ft=perl6

0 comments on commit dfd5d4a

Please sign in to comment.