Skip to content

Commit 48160f2

Browse files
committed
anonymous & doesn't make a lot of sense
1 parent 7910209 commit 48160f2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

S03-operators/context.t

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use v6;
22

33
use Test;
44

5-
plan 39;
5+
plan 38;
66

77
# L<S03/List prefix precedence/The list contextualizer>
88

@@ -92,7 +92,6 @@ plan 39;
9292
is(($).WHAT.gist, '(Any)', 'Anonymous $ variable can be declared');
9393
is((@).WHAT.gist, '(Array)', 'Anonymous @ variable can be declared');
9494
is((%).WHAT.gist, '(Hash)', 'Anonymous % variable can be declared');
95-
is((&).WHAT.gist, '(Callable)', 'Anonymous & variable can be declared');
9695

9796
is((++$), 1, 'Anonymous $ variable can be incremented');
9897
is((@).push(42,43), '42 43', 'Anonymous @ variable can be pushed');

0 commit comments

Comments
 (0)