We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7910209 commit 48160f2Copy full SHA for 48160f2
S03-operators/context.t
@@ -2,7 +2,7 @@ use v6;
2
3
use Test;
4
5
-plan 39;
+plan 38;
6
7
# L<S03/List prefix precedence/The list contextualizer>
8
@@ -92,7 +92,6 @@ plan 39;
92
is(($).WHAT.gist, '(Any)', 'Anonymous $ variable can be declared');
93
is((@).WHAT.gist, '(Array)', 'Anonymous @ variable can be declared');
94
is((%).WHAT.gist, '(Hash)', 'Anonymous % variable can be declared');
95
-is((&).WHAT.gist, '(Callable)', 'Anonymous & variable can be declared');
96
97
is((++$), 1, 'Anonymous $ variable can be incremented');
98
is((@).push(42,43), '42 43', 'Anonymous @ variable can be pushed');
0 commit comments