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 52c1e70 commit 4cb303eCopy full SHA for 4cb303e
S04-statements/terminator.t
@@ -2,7 +2,7 @@ use v6;
2
3
use Test;
4
5
-plan 14;
+plan 15;
6
7
# L<S04/"Statement-ending blocks"/"will terminate a statement">
8
@@ -54,4 +54,8 @@ eval_dies_ok "42 if 23\nis 50; 1",
54
# not sure this belong here, suggestions for better places are welcome
55
eval_dies_ok '(1) { $foo = 2 }', 'parens do not eat spaces after them';
56
57
+# RT #79964
58
+#?rakudo todo 'RT #79964'
59
+eval_lives_ok "my &f;\nsub g() { }\n&f;", 'implicit terminator before & sigil';
60
+
61
# vim: ft=perl6
0 commit comments